From df8269df2a352be0a83d72f4c188c1678abb7d08 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Sun, 15 Sep 2024 22:42:08 +0200 Subject: [PATCH 01/22] fix missing trans strings (#8128) --- src/frontend/src/pages/stock/LocationDetail.tsx | 4 ++-- src/frontend/src/tables/stock/StockItemTable.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/frontend/src/pages/stock/LocationDetail.tsx b/src/frontend/src/pages/stock/LocationDetail.tsx index 8eb9200982..f6997abb76 100644 --- a/src/frontend/src/pages/stock/LocationDetail.tsx +++ b/src/frontend/src/pages/stock/LocationDetail.tsx @@ -310,11 +310,11 @@ export default function Stock() { icon={} actions={[ { - name: 'Count Stock', + name: t`Count Stock`, icon: ( ), - tooltip: 'Count Stock', + tooltip: t`Count Stock`, onClick: () => countStockItems.open() }, { diff --git a/src/frontend/src/tables/stock/StockItemTable.tsx b/src/frontend/src/tables/stock/StockItemTable.tsx index 3b773452c3..b57f9f9e3f 100644 --- a/src/frontend/src/tables/stock/StockItemTable.tsx +++ b/src/frontend/src/tables/stock/StockItemTable.tsx @@ -464,11 +464,11 @@ export function StockItemTable({ } }, { - name: 'Count Stock', + name: t`Count Stock`, icon: ( ), - tooltip: 'Count Stock', + tooltip: t`Count Stock`, disabled: !can_add_stocktake, onClick: () => { countStock.open(); From 12d2865b59529f478c8ea0a0a0bab431441f6eac Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 16 Sep 2024 10:36:27 +1000 Subject: [PATCH 02/22] PUI Plugin Panels (#7470) * Adds basic API endpoint for requesting plugin panels * Split PanelType out into own file * Placeholder for a plugin panel loaded dynamically * Add some dummy data for the plugin panels * Example of plugin panel selection based on page * Expose some global window attributes * Add new setting * Disable panel return if plugin integration is not enabled * Update hook to auto-magically load plugin panels * Allow custom panel integration for more panel groups * Remove debug call * Tweak query return data * async fn * Adds component for handling panel render * Cleanup * Prevent API requests before instance ID is known * Pass instance data through * Framework for a sample plugin which implements custom panels * offload custom panels to sample plugin * Load raw HTML content * Expand custom panel rendering demo * Adjust API endpoints * Add function to clear out static files which do not match installed plugin(s) * Update static files when installing plugins from file * Update static files when installing or uninstalling a plugin * Update static files on config change * Pass more information through to plugin panels * Prepend hostname to plugin source * Pass instance detail through * Cleanup code for passing data through to plugin panels - Define interface type - Shorten variable names * Update docs requirements * Revert "Update docs requirements" This reverts commit 63a06d97f58ae15d837babb799b9ed8b22c3802b. * Add placeholder for documentation * Fix imports * Add a broken panel which tries to load a non-existent javascript file * Render error message if plugin does not load correctly * Only allow superuser to perform plugin actions * Code cleanup * Add "dynamic" contnt - javascript file - to example plugin * Remove default values * Cleanup unused code * PanelGroup updates * Cleanup hooks for changing panel state * More work needed... * Code cleanup * More updates / refactoring - Allow dynamic hiding of a particular panel - Pass target ref as positional argument - Better handling of async calls * Documentation * Bump API version * Provide theme object to plugin context * Adjust sample plugin * Docs updates * Fix includefile call in docs * Improve type annotation * Cleanup * Enable plugin panels for "purchasing index" and "sales index" pages * Fix for plugin query check * Improvements to panel selection - Code refactor / cleanup - Ensure that a valid panel is always displayed - Allow plugin panels to persist, even after reload * Playwright test fixes * Update src/frontend/src/hooks/UsePluginPanels.tsx Co-authored-by: Lukas <76838159+wolflu05@users.noreply.github.com> * Update src/frontend/src/components/plugins/PluginPanel.tsx Co-authored-by: Lukas <76838159+wolflu05@users.noreply.github.com> * Update src/frontend/src/components/plugins/PluginContext.tsx Co-authored-by: Lukas <76838159+wolflu05@users.noreply.github.com> * Fix context * Add more context data * Docs updates * Reimplement local state * Fix mkdocs.yml * Expose 'colorScheme' to plugin context * Define CustomPanel type definition * Add unit testing for user interface plugins * Add front-end tests for plugin panels * Add new setting to plugin_settings_keys * Adds helper function for annotating build line allocations * Improve query efficiency - Especially around unit testing - Ensure all settings are generated - Do not auto-create settings during registry load * Improve query efficiency for build order operations * Reduce max query count for specific test * Revert query count limit * playwright test updates --------- Co-authored-by: Lukas <76838159+wolflu05@users.noreply.github.com> --- docs/docs/extend/plugins/panel.md | 6 + docs/docs/extend/plugins/ui.md | 102 ++++++++++++ docs/docs/settings/global.md | 2 +- docs/docs/start/config.md | 2 +- docs/mkdocs.yml | 1 + .../InvenTree/InvenTree/api_version.py | 5 +- .../management/commands/collectplugins.py | 5 +- src/backend/InvenTree/InvenTree/models.py | 2 +- src/backend/InvenTree/InvenTree/settings.py | 57 ++++--- src/backend/InvenTree/InvenTree/unit_test.py | 12 ++ src/backend/InvenTree/InvenTree/urls.py | 2 +- src/backend/InvenTree/build/filters.py | 25 +++ src/backend/InvenTree/build/models.py | 52 +++--- src/backend/InvenTree/common/models.py | 7 + src/backend/InvenTree/plugin/api.py | 49 ++++++ .../base/integration/UserInterfaceMixin.py | 76 +++++++++ .../plugin/base/integration/test_mixins.py | 105 +++++++++++- src/backend/InvenTree/plugin/installer.py | 11 ++ .../InvenTree/plugin/mixins/__init__.py | 3 + src/backend/InvenTree/plugin/registry.py | 7 +- .../templates/uidemo/custom_part_panel.html | 30 ++++ .../integration/user_interface_sample.py | 124 +++++++++++++++ .../samples/static/plugin/sample_panel.js | 47 ++++++ src/backend/InvenTree/plugin/serializers.py | 43 +++++ src/backend/InvenTree/plugin/staticfiles.py | 27 ++++ src/frontend/playwright.config.ts | 3 +- src/frontend/src/components/nav/Panel.tsx | 14 ++ .../src/components/nav/PanelGroup.tsx | 93 ++++++----- .../src/components/plugins/PluginContext.tsx | 36 +++++ .../src/components/plugins/PluginPanel.tsx | 122 ++++++++++++++ .../src/components/plugins/PluginSource.tsx | 47 ++++++ src/frontend/src/enums/ApiEndpoints.tsx | 3 + src/frontend/src/functions/icons.tsx | 4 +- src/frontend/src/hooks/UsePluginPanels.tsx | 149 ++++++++++++++++++ src/frontend/src/main.tsx | 6 + .../Index/Settings/AdminCenter/Index.tsx | 3 +- .../AdminCenter/PluginManagementPanel.tsx | 24 +-- .../pages/Index/Settings/SystemSettings.tsx | 3 +- .../src/pages/Index/Settings/UserSettings.tsx | 3 +- src/frontend/src/pages/build/BuildDetail.tsx | 11 +- .../src/pages/company/CompanyDetail.tsx | 11 +- .../pages/company/ManufacturerPartDetail.tsx | 11 +- .../src/pages/company/SupplierPartDetail.tsx | 11 +- .../src/pages/part/CategoryDetail.tsx | 13 +- src/frontend/src/pages/part/PartDetail.tsx | 11 +- .../pages/purchasing/PurchaseOrderDetail.tsx | 11 +- .../src/pages/purchasing/PurchasingIndex.tsx | 7 +- .../src/pages/sales/ReturnOrderDetail.tsx | 11 +- src/frontend/src/pages/sales/SalesIndex.tsx | 7 +- .../src/pages/sales/SalesOrderDetail.tsx | 11 +- .../src/pages/stock/LocationDetail.tsx | 11 +- src/frontend/src/pages/stock/StockDetail.tsx | 11 +- src/frontend/src/states/UserState.tsx | 2 +- .../src/tables/plugin/PluginListTable.tsx | 50 +++--- src/frontend/tests/pages/pui_part.spec.ts | 4 +- src/frontend/tests/pui_plugins.spec.ts | 104 ++++++++++++ 56 files changed, 1446 insertions(+), 163 deletions(-) create mode 100644 docs/docs/extend/plugins/ui.md create mode 100644 src/backend/InvenTree/build/filters.py create mode 100644 src/backend/InvenTree/plugin/base/integration/UserInterfaceMixin.py create mode 100644 src/backend/InvenTree/plugin/samples/integration/templates/uidemo/custom_part_panel.html create mode 100644 src/backend/InvenTree/plugin/samples/integration/user_interface_sample.py create mode 100644 src/backend/InvenTree/plugin/samples/static/plugin/sample_panel.js create mode 100644 src/frontend/src/components/nav/Panel.tsx create mode 100644 src/frontend/src/components/plugins/PluginContext.tsx create mode 100644 src/frontend/src/components/plugins/PluginPanel.tsx create mode 100644 src/frontend/src/components/plugins/PluginSource.tsx create mode 100644 src/frontend/src/hooks/UsePluginPanels.tsx create mode 100644 src/frontend/tests/pui_plugins.spec.ts diff --git a/docs/docs/extend/plugins/panel.md b/docs/docs/extend/plugins/panel.md index f91c175ab1..d19c568475 100644 --- a/docs/docs/extend/plugins/panel.md +++ b/docs/docs/extend/plugins/panel.md @@ -4,6 +4,12 @@ title: Panel Mixin ## PanelMixin +!!! warning "Legacy User Interface" + This plugin mixin class is designed specifically for the the *legacy* user interface (which is rendered on the server using django templates). The new user interface (which is rendered on the client using React) does not support this mixin class. Instead, refer to the new [User Interface Mixin](./ui.md) class. + +!!! warning "Deprecated Class" + This mixin class is considered deprecated, and will be removed in the 1.0.0 release. + The `PanelMixin` enables plugins to render custom content to "panels" on individual pages in the web interface. Most pages in the web interface support multiple panels, which are selected via the sidebar menu on the left side of the screen: diff --git a/docs/docs/extend/plugins/ui.md b/docs/docs/extend/plugins/ui.md new file mode 100644 index 0000000000..33b58faabe --- /dev/null +++ b/docs/docs/extend/plugins/ui.md @@ -0,0 +1,102 @@ +--- +title: User Interface Mixin +--- + +## User Interface Mixin + +The *User Interface* mixin class provides a set of methods to implement custom functionality for the InvenTree web interface. + +### Enable User Interface Mixin + +To enable user interface plugins, the global setting `ENABLE_PLUGINS_INTERFACE` must be enabled, in the [plugin settings](../../settings/global.md#plugin-settings). + +## Plugin Context + +When rendering certain content in the user interface, the rendering functions are passed a `context` object which contains information about the current page being rendered. The type of the `context` object is defined in the `PluginContext` file: + +{{ includefile("src/frontend/src/components/plugins/PluginContext.tsx", title="Plugin Context", fmt="javascript") }} + +## Custom Panels + +Many of the pages in the InvenTree web interface are built using a series of "panels" which are displayed on the page. Custom panels can be added to these pages, by implementing the `get_custom_panels` method: + +::: plugin.base.integration.UserInterfaceMixin.UserInterfaceMixin.get_custom_panels + options: + show_bases: False + show_root_heading: False + show_root_toc_entry: False + show_sources: True + summary: False + members: [] + +The custom panels can display content which is generated either on the server side, or on the client side (see below). + +### Server Side Rendering + +The panel content can be generated on the server side, by returning a 'content' attribute in the response. This 'content' attribute is expected to be raw HTML, and is rendered directly into the page. This is particularly useful for displaying static content. + +Server-side rendering is simple to implement, and can make use of the powerful Django templating system. + +Refer to the [sample plugin](#sample-plugin) for an example of how to implement server side rendering for custom panels. + +**Advantages:** + +- Simple to implement +- Can use Django templates to render content +- Has access to the full InvenTree database, and content not available on the client side (via the API) + +**Disadvantages:** + +- Content is rendered on the server side, and cannot be updated without a page refresh +- Content is not interactive + +### Client Side Rendering + +The panel content can also be generated on the client side, by returning a 'source' attribute in the response. This 'source' attribute is expected to be a URL which points to a JavaScript file which will be loaded by the client. + +Refer to the [sample plugin](#sample-plugin) for an example of how to implement client side rendering for custom panels. + +#### Panel Render Function + +The JavaScript file must implement a `renderPanel` function, which is called by the client when the panel is rendered. This function is passed two parameters: + +- `target`: The HTML element which the panel content should be rendered into +- `context`: A dictionary of context data which can be used to render the panel content + + +**Example** + +```javascript +export function renderPanel(target, context) { + target.innerHTML = "

Hello, world!

"; +} +``` + +#### Panel Visibility Function + +The JavaScript file can also implement a `isPanelHidden` function, which is called by the client to determine if the panel is displayed. This function is passed a single parameter, *context* - which is the same as the context data passed to the `renderPanel` function. + +The `isPanelHidden` function should return a boolean value, which determines if the panel is displayed or not, based on the context data. + +If the `isPanelHidden` function is not implemented, the panel will be displayed by default. + +**Example** + +```javascript +export function isPanelHidden(context) { + // Only visible for active parts + return context.model == 'part' && context.instance?.active; +} +``` + +## Sample Plugin + +A sample plugin which implements custom user interface functionality is provided in the InvenTree source code: + +::: plugin.samples.integration.user_interface_sample.SampleUserInterfacePlugin + options: + show_bases: False + show_root_heading: False + show_root_toc_entry: False + show_source: True + members: [] diff --git a/docs/docs/settings/global.md b/docs/docs/settings/global.md index d2ecaf44e4..5c4f4b9f5a 100644 --- a/docs/docs/settings/global.md +++ b/docs/docs/settings/global.md @@ -208,7 +208,6 @@ Refer to the [return order settings](../order/return_order.md#return-order-setti ### Plugin Settings - | Name | Description | Default | Units | | ---- | ----------- | ------- | ----- | {{ globalsetting("PLUGIN_ON_STARTUP") }} @@ -218,3 +217,4 @@ Refer to the [return order settings](../order/return_order.md#return-order-setti {{ globalsetting("ENABLE_PLUGINS_APP") }} {{ globalsetting("ENABLE_PLUGINS_SCHEDULE") }} {{ globalsetting("ENABLE_PLUGINS_EVENTS") }} +{{ globalsetting("ENABLE_PLUGINS_INTERFACE") }} diff --git a/docs/docs/start/config.md b/docs/docs/start/config.md index 5653b8a659..0fa4cf1af8 100644 --- a/docs/docs/start/config.md +++ b/docs/docs/start/config.md @@ -26,7 +26,7 @@ The InvenTree server tries to locate the `config.yaml` configuration file on sta The configuration file *template* can be found on [GitHub]({{ sourcefile("src/backend/InvenTree/config_template.yaml") }}), and is shown below: -{{ includefile("src/backend/InvenTree/config_template.yaml", "Configuration File Template", format="yaml") }} +{{ includefile("src/backend/InvenTree/config_template.yaml", "Configuration File Template", fmt="yaml") }} !!! info "Template File" The default configuration file (as defined by the template linked above) will be copied to the specified configuration file location on first run, if a configuration file is not found in that location. diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 059a7fb10b..b9d4fdd137 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -213,6 +213,7 @@ nav: - Schedule Mixin: extend/plugins/schedule.md - Settings Mixin: extend/plugins/settings.md - URL Mixin: extend/plugins/urls.md + - User Interface Mixin: extend/plugins/ui.md - Validation Mixin: extend/plugins/validation.md - Machines: - Overview: extend/machines/overview.md diff --git a/src/backend/InvenTree/InvenTree/api_version.py b/src/backend/InvenTree/InvenTree/api_version.py index eca68cac40..d7f0ffa89b 100644 --- a/src/backend/InvenTree/InvenTree/api_version.py +++ b/src/backend/InvenTree/InvenTree/api_version.py @@ -1,13 +1,16 @@ """InvenTree API version information.""" # InvenTree API version -INVENTREE_API_VERSION = 253 +INVENTREE_API_VERSION = 254 """Increment this API version number whenever there is a significant change to the API that any clients need to know about.""" INVENTREE_API_TEXT = """ +v254 - 2024-09-14 : https://github.com/inventree/InvenTree/pull/7470 + - Implements new API endpoints for enabling custom UI functionality via plugins + v253 - 2024-09-14 : https://github.com/inventree/InvenTree/pull/7944 - Adjustments for user API endpoints diff --git a/src/backend/InvenTree/InvenTree/management/commands/collectplugins.py b/src/backend/InvenTree/InvenTree/management/commands/collectplugins.py index 77b00f73b5..ce7df416fc 100644 --- a/src/backend/InvenTree/InvenTree/management/commands/collectplugins.py +++ b/src/backend/InvenTree/InvenTree/management/commands/collectplugins.py @@ -8,6 +8,7 @@ class Command(BaseCommand): def handle(self, *args, **kwargs): """Run the management command.""" - from plugin.staticfiles import collect_plugins_static_files + import plugin.staticfiles - collect_plugins_static_files() + plugin.staticfiles.collect_plugins_static_files() + plugin.staticfiles.clear_plugins_static_files() diff --git a/src/backend/InvenTree/InvenTree/models.py b/src/backend/InvenTree/InvenTree/models.py index c57a0ccbcb..2d2b558b4e 100644 --- a/src/backend/InvenTree/InvenTree/models.py +++ b/src/backend/InvenTree/InvenTree/models.py @@ -439,7 +439,7 @@ class ReferenceIndexingMixin(models.Model): ) # Check that the reference field can be rebuild - cls.rebuild_reference_field(value, validate=True) + return cls.rebuild_reference_field(value, validate=True) @classmethod def rebuild_reference_field(cls, reference, validate=False): diff --git a/src/backend/InvenTree/InvenTree/settings.py b/src/backend/InvenTree/InvenTree/settings.py index 8529397770..8c10edfb08 100644 --- a/src/backend/InvenTree/InvenTree/settings.py +++ b/src/backend/InvenTree/InvenTree/settings.py @@ -133,6 +133,34 @@ STATIC_URL = '/static/' # Web URL endpoint for served media files MEDIA_URL = '/media/' +# Are plugins enabled? +PLUGINS_ENABLED = get_boolean_setting( + 'INVENTREE_PLUGINS_ENABLED', 'plugins_enabled', False +) + +PLUGINS_INSTALL_DISABLED = get_boolean_setting( + 'INVENTREE_PLUGIN_NOINSTALL', 'plugin_noinstall', False +) + +PLUGIN_FILE = config.get_plugin_file() + +# Plugin test settings +PLUGIN_TESTING = get_setting( + 'INVENTREE_PLUGIN_TESTING', 'PLUGIN_TESTING', TESTING +) # Are plugins being tested? + +PLUGIN_TESTING_SETUP = get_setting( + 'INVENTREE_PLUGIN_TESTING_SETUP', 'PLUGIN_TESTING_SETUP', False +) # Load plugins from setup hooks in testing? + +PLUGIN_TESTING_EVENTS = False # Flag if events are tested right now + +PLUGIN_RETRY = get_setting( + 'INVENTREE_PLUGIN_RETRY', 'PLUGIN_RETRY', 3, typecast=int +) # How often should plugin loading be tried? + +PLUGIN_FILE_CHECKED = False # Was the plugin file checked? + STATICFILES_DIRS = [] # Translated Template settings @@ -153,6 +181,12 @@ if DEBUG and 'collectstatic' not in sys.argv: if web_dir.exists(): STATICFILES_DIRS.append(web_dir) + # Append directory for sample plugin static content (if in debug mode) + if PLUGINS_ENABLED: + print('Adding plugin sample static content') + STATICFILES_DIRS.append(BASE_DIR.joinpath('plugin', 'samples', 'static')) + + print('-', STATICFILES_DIRS[-1]) STATFILES_I18_PROCESSORS = ['InvenTree.context.status_codes'] # Color Themes Directory @@ -1254,29 +1288,6 @@ IGNORED_ERRORS = [Http404, django.core.exceptions.PermissionDenied] MAINTENANCE_MODE_RETRY_AFTER = 10 MAINTENANCE_MODE_STATE_BACKEND = 'InvenTree.backends.InvenTreeMaintenanceModeBackend' -# Are plugins enabled? -PLUGINS_ENABLED = get_boolean_setting( - 'INVENTREE_PLUGINS_ENABLED', 'plugins_enabled', False -) -PLUGINS_INSTALL_DISABLED = get_boolean_setting( - 'INVENTREE_PLUGIN_NOINSTALL', 'plugin_noinstall', False -) - -PLUGIN_FILE = config.get_plugin_file() - -# Plugin test settings -PLUGIN_TESTING = get_setting( - 'INVENTREE_PLUGIN_TESTING', 'PLUGIN_TESTING', TESTING -) # Are plugins being tested? -PLUGIN_TESTING_SETUP = get_setting( - 'INVENTREE_PLUGIN_TESTING_SETUP', 'PLUGIN_TESTING_SETUP', False -) # Load plugins from setup hooks in testing? -PLUGIN_TESTING_EVENTS = False # Flag if events are tested right now -PLUGIN_RETRY = get_setting( - 'INVENTREE_PLUGIN_RETRY', 'PLUGIN_RETRY', 3, typecast=int -) # How often should plugin loading be tried? -PLUGIN_FILE_CHECKED = False # Was the plugin file checked? - # Flag to allow table events during testing TESTING_TABLE_EVENTS = False diff --git a/src/backend/InvenTree/InvenTree/unit_test.py b/src/backend/InvenTree/InvenTree/unit_test.py index 100b450019..c6409fd6c8 100644 --- a/src/backend/InvenTree/InvenTree/unit_test.py +++ b/src/backend/InvenTree/InvenTree/unit_test.py @@ -291,6 +291,18 @@ class InvenTreeAPITestCase(ExchangeRateMixin, UserMixin, APITestCase): self.assertLess(n, value, msg=msg) + @classmethod + def setUpTestData(cls): + """Setup for API tests. + + - Ensure that all global settings are assigned default values. + """ + from common.models import InvenTreeSetting + + InvenTreeSetting.build_default_values() + + super().setUpTestData() + def check_response(self, url, response, expected_code=None): """Debug output for an unexpected response.""" # Check that the response returned the expected status code diff --git a/src/backend/InvenTree/InvenTree/urls.py b/src/backend/InvenTree/InvenTree/urls.py index 03712320e1..7f6d6c6b37 100644 --- a/src/backend/InvenTree/InvenTree/urls.py +++ b/src/backend/InvenTree/InvenTree/urls.py @@ -484,7 +484,7 @@ if settings.ENABLE_PLATFORM_FRONTEND: urlpatterns += frontendpatterns -# Append custom plugin URLs (if plugin support is enabled) +# Append custom plugin URLs (if custom plugin support is enabled) if settings.PLUGINS_ENABLED: urlpatterns.append(get_plugin_urls()) diff --git a/src/backend/InvenTree/build/filters.py b/src/backend/InvenTree/build/filters.py new file mode 100644 index 0000000000..ff3c02a523 --- /dev/null +++ b/src/backend/InvenTree/build/filters.py @@ -0,0 +1,25 @@ +"""Queryset filtering helper functions for the Build app.""" + + +from django.db import models +from django.db.models import Sum, Q +from django.db.models.functions import Coalesce + + +def annotate_allocated_quantity(queryset: Q) -> Q: + """ + Annotate the 'allocated' quantity for each build item in the queryset. + + Arguments: + queryset: The BuildLine queryset to annotate + + """ + + queryset = queryset.prefetch_related('allocations') + + return queryset.annotate( + allocated=Coalesce( + Sum('allocations__quantity'), 0, + output_field=models.DecimalField() + ) + ) diff --git a/src/backend/InvenTree/build/models.py b/src/backend/InvenTree/build/models.py index 899145f98d..9b13dbf1ed 100644 --- a/src/backend/InvenTree/build/models.py +++ b/src/backend/InvenTree/build/models.py @@ -9,7 +9,7 @@ from django.contrib.auth.models import User from django.core.exceptions import ValidationError from django.core.validators import MinValueValidator from django.db import models, transaction -from django.db.models import Sum, Q +from django.db.models import F, Sum, Q from django.db.models.functions import Coalesce from django.db.models.signals import post_save from django.dispatch.dispatcher import receiver @@ -24,6 +24,7 @@ from rest_framework import serializers from build.status_codes import BuildStatus, BuildStatusGroups from stock.status_codes import StockStatus, StockHistoryCode +from build.filters import annotate_allocated_quantity from build.validators import generate_next_build_reference, validate_build_order_reference from generic.states import StateTransitionMixin @@ -124,8 +125,7 @@ class Build( def save(self, *args, **kwargs): """Custom save method for the BuildOrder model""" - self.validate_reference_field(self.reference) - self.reference_int = self.rebuild_reference_field(self.reference) + self.reference_int = self.validate_reference_field(self.reference) # Check part when initially creating the build order if not self.pk or self.has_field_changed('part'): @@ -987,12 +987,13 @@ class Build( items_to_save = [] items_to_delete = [] - lines = self.untracked_line_items - lines = lines.prefetch_related('allocations') + lines = self.untracked_line_items.all() + lines = lines.exclude(bom_item__consumable=True) + lines = annotate_allocated_quantity(lines) for build_line in lines: - reduce_by = build_line.allocated_quantity() - build_line.quantity + reduce_by = build_line.allocated - build_line.quantity if reduce_by <= 0: continue @@ -1290,18 +1291,20 @@ class Build( """Returns a list of BuildLine objects which have not been fully allocated.""" lines = self.build_lines.all() + # Remove any 'consumable' line items + lines = lines.exclude(bom_item__consumable=True) + if tracked is True: lines = lines.filter(bom_item__sub_part__trackable=True) elif tracked is False: lines = lines.filter(bom_item__sub_part__trackable=False) - unallocated_lines = [] + lines = annotate_allocated_quantity(lines) - for line in lines: - if not line.is_fully_allocated(): - unallocated_lines.append(line) + # Filter out any lines which have been fully allocated + lines = lines.filter(allocated__lt=F('quantity')) - return unallocated_lines + return lines def is_fully_allocated(self, tracked=None): """Test if the BuildOrder has been fully allocated. @@ -1314,19 +1317,24 @@ class Build( Returns: True if the BuildOrder has been fully allocated, otherwise False """ - lines = self.unallocated_lines(tracked=tracked) - return len(lines) == 0 + + return self.unallocated_lines(tracked=tracked).count() == 0 def is_output_fully_allocated(self, output): """Determine if the specified output (StockItem) has been fully allocated for this build Args: - output: StockItem object + output: StockItem object (the "in production" output to test against) To determine if the output has been fully allocated, we need to test all "trackable" BuildLine objects """ - for line in self.build_lines.filter(bom_item__sub_part__trackable=True): + + lines = self.build_lines.filter(bom_item__sub_part__trackable=True) + lines = lines.exclude(bom_item__consumable=True) + + # Find any lines which have not been fully allocated + for line in lines: # Grab all BuildItem objects which point to this output allocations = BuildItem.objects.filter( build_line=line, @@ -1350,11 +1358,14 @@ class Build( Returns: True if any BuildLine has been over-allocated. """ - for line in self.build_lines.all(): - if line.is_overallocated(): - return True - return False + lines = self.build_lines.all().exclude(bom_item__consumable=True) + lines = annotate_allocated_quantity(lines) + + # Find any lines which have been over-allocated + lines = lines.filter(allocated__gt=F('quantity')) + + return lines.count() > 0 @property def is_active(self): @@ -1692,6 +1703,9 @@ class BuildItem(InvenTree.models.InvenTreeMetadataModel): - If the referenced part is trackable, the stock item will be *installed* into the build output - If the referenced part is *not* trackable, the stock item will be *consumed* by the build order + + TODO: This is quite expensive (in terms of number of database hits) - and requires some thought + """ item = self.stock_item diff --git a/src/backend/InvenTree/common/models.py b/src/backend/InvenTree/common/models.py index 2b8dc5aca3..03c6d8b0ac 100644 --- a/src/backend/InvenTree/common/models.py +++ b/src/backend/InvenTree/common/models.py @@ -2095,6 +2095,13 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'validator': bool, 'after_save': reload_plugin_registry, }, + 'ENABLE_PLUGINS_INTERFACE': { + 'name': _('Enable interface integration'), + 'description': _('Enable plugins to integrate into the user interface'), + 'default': False, + 'validator': bool, + 'after_save': reload_plugin_registry, + }, 'PROJECT_CODES_ENABLED': { 'name': _('Enable project codes'), 'description': _('Enable project codes for tracking projects'), diff --git a/src/backend/InvenTree/plugin/api.py b/src/backend/InvenTree/plugin/api.py index 1d3f6763f8..a8a9cb1c48 100644 --- a/src/backend/InvenTree/plugin/api.py +++ b/src/backend/InvenTree/plugin/api.py @@ -11,11 +11,13 @@ from django_filters.rest_framework import DjangoFilterBackend from drf_spectacular.utils import extend_schema from rest_framework import permissions, status from rest_framework.exceptions import NotFound +from rest_framework.permissions import IsAuthenticated from rest_framework.response import Response from rest_framework.views import APIView import plugin.serializers as PluginSerializers from common.api import GlobalSettingsPermissions +from common.settings import get_global_setting from InvenTree.api import MetadataView from InvenTree.filters import SEARCH_ORDER_FILTER from InvenTree.mixins import ( @@ -414,6 +416,38 @@ class RegistryStatusView(APIView): return Response(result) +class PluginPanelList(APIView): + """API endpoint for listing all available plugin panels.""" + + permission_classes = [IsAuthenticated] + serializer_class = PluginSerializers.PluginPanelSerializer + + @extend_schema(responses={200: PluginSerializers.PluginPanelSerializer(many=True)}) + def get(self, request): + """Show available plugin panels.""" + target_model = request.query_params.get('target_model', None) + target_id = request.query_params.get('target_id', None) + + panels = [] + + if get_global_setting('ENABLE_PLUGINS_INTERFACE'): + # Extract all plugins from the registry which provide custom panels + for _plugin in registry.with_mixin('ui', active=True): + # Allow plugins to fill this data out + plugin_panels = _plugin.get_custom_panels( + target_model, target_id, request + ) + + if plugin_panels and type(plugin_panels) is list: + for panel in plugin_panels: + panel['plugin'] = _plugin.slug + + # TODO: Validate each panel before inserting + panels.append(panel) + + return Response(PluginSerializers.PluginPanelSerializer(panels, many=True).data) + + class PluginMetadataView(MetadataView): """Metadata API endpoint for the PluginConfig model.""" @@ -428,6 +462,21 @@ plugin_api_urls = [ path( 'plugins/', include([ + path( + 'ui/', + include([ + path( + 'panels/', + include([ + path( + '', + PluginPanelList.as_view(), + name='api-plugin-panel-list', + ) + ]), + ) + ]), + ), # Plugin management path('reload/', PluginReload.as_view(), name='api-plugin-reload'), path('install/', PluginInstall.as_view(), name='api-plugin-install'), diff --git a/src/backend/InvenTree/plugin/base/integration/UserInterfaceMixin.py b/src/backend/InvenTree/plugin/base/integration/UserInterfaceMixin.py new file mode 100644 index 0000000000..252c18705b --- /dev/null +++ b/src/backend/InvenTree/plugin/base/integration/UserInterfaceMixin.py @@ -0,0 +1,76 @@ +"""UserInterfaceMixin class definition. + +Allows integration of custom UI elements into the React user interface. +""" + +import logging +from typing import TypedDict + +from rest_framework.request import Request + +logger = logging.getLogger('inventree') + + +class CustomPanel(TypedDict): + """Type definition for a custom panel. + + Attributes: + name: The name of the panel (required, used as a DOM identifier). + label: The label of the panel (required, human readable). + icon: The icon of the panel (optional, must be a valid icon identifier). + content: The content of the panel (optional, raw HTML). + source: The source of the panel (optional, path to a JavaScript file). + """ + + name: str + label: str + icon: str + content: str + source: str + + +class UserInterfaceMixin: + """Plugin mixin class which handles injection of custom elements into the front-end interface. + + - All content is accessed via the API, as requested by the user interface. + - This means that content can be dynamically generated, based on the current state of the system. + """ + + class MixinMeta: + """Metaclass for this plugin mixin.""" + + MIXIN_NAME = 'ui' + + def __init__(self): + """Register mixin.""" + super().__init__() + self.add_mixin('ui', True, __class__) + + def get_custom_panels( + self, instance_type: str, instance_id: int, request: Request + ) -> list[CustomPanel]: + """Return a list of custom panels to be injected into the UI. + + Args: + instance_type: The type of object being viewed (e.g. 'part') + instance_id: The ID of the object being viewed (e.g. 123) + request: HTTPRequest object (including user information) + + Returns: + list: A list of custom panels to be injected into the UI + + - The returned list should contain a dict for each custom panel to be injected into the UI: + - The following keys can be specified: + { + 'name': 'panel_name', # The name of the panel (required, must be unique) + 'label': 'Panel Title', # The title of the panel (required, human readable) + 'icon': 'icon-name', # Icon name (optional, must be a valid icon identifier) + 'content': '

Panel content

', # HTML content to be rendered in the panel (optional) + 'source': 'static/plugin/panel.js', # Path to a JavaScript file to be loaded (optional) + } + + - Either 'source' or 'content' must be provided + + """ + # Default implementation returns an empty list + return [] diff --git a/src/backend/InvenTree/plugin/base/integration/test_mixins.py b/src/backend/InvenTree/plugin/base/integration/test_mixins.py index 43bd7b9d1f..83caccad30 100644 --- a/src/backend/InvenTree/plugin/base/integration/test_mixins.py +++ b/src/backend/InvenTree/plugin/base/integration/test_mixins.py @@ -8,7 +8,8 @@ from django.urls import include, path, re_path, reverse from error_report.models import Error -from InvenTree.unit_test import InvenTreeTestCase +from common.models import InvenTreeSetting +from InvenTree.unit_test import InvenTreeAPITestCase, InvenTreeTestCase from plugin import InvenTreePlugin from plugin.base.integration.PanelMixin import PanelMixin from plugin.helpers import MixinNotImplementedError @@ -341,7 +342,10 @@ class APICallMixinTest(BaseMixinDefinition, TestCase): class PanelMixinTests(InvenTreeTestCase): - """Test that the PanelMixin plugin operates correctly.""" + """Test that the PanelMixin plugin operates correctly. + + TODO: This class will be removed in the future, as the PanelMixin is deprecated. + """ fixtures = ['category', 'part', 'location', 'stock'] @@ -475,3 +479,100 @@ class PanelMixinTests(InvenTreeTestCase): plugin = Wrong() plugin.get_custom_panels('abc', 'abc') + + +class UserInterfaceMixinTests(InvenTreeAPITestCase): + """Test the UserInterfaceMixin plugin mixin class.""" + + roles = 'all' + + fixtures = ['part', 'category', 'location', 'stock'] + + @classmethod + def setUpTestData(cls): + """Set up the test case.""" + super().setUpTestData() + + # Ensure that the 'sampleui' plugin is installed and active + registry.set_plugin_state('sampleui', True) + + # Ensure that UI plugins are enabled + InvenTreeSetting.set_setting('ENABLE_PLUGINS_INTERFACE', True, change_user=None) + + def test_installed(self): + """Test that the sample UI plugin is installed and active.""" + plugin = registry.get_plugin('sampleui') + self.assertTrue(plugin.is_active()) + + plugins = registry.with_mixin('ui') + self.assertGreater(len(plugins), 0) + + def test_panels(self): + """Test that the sample UI plugin provides custom panels.""" + from part.models import Part + + plugin = registry.get_plugin('sampleui') + + _part = Part.objects.first() + + # Ensure that the part is active + _part.active = True + _part.save() + + url = reverse('api-plugin-panel-list') + + query_data = {'target_model': 'part', 'target_id': _part.pk} + + # Enable *all* plugin settings + plugin.set_setting('ENABLE_PART_PANELS', True) + plugin.set_setting('ENABLE_PURCHASE_ORDER_PANELS', True) + plugin.set_setting('ENABLE_BROKEN_PANELS', True) + plugin.set_setting('ENABLE_DYNAMIC_PANEL', True) + + # Request custom panel information for a part instance + response = self.get(url, data=query_data) + + # There should be 4 active panels for the part by default + self.assertEqual(4, len(response.data)) + + _part.active = False + _part.save() + + response = self.get(url, data=query_data) + + # As the part is not active, only 3 panels left + self.assertEqual(3, len(response.data)) + + # Disable the "ENABLE_PART_PANELS" setting, and try again + plugin.set_setting('ENABLE_PART_PANELS', False) + + response = self.get(url, data=query_data) + + # There should still be 3 panels + self.assertEqual(3, len(response.data)) + + # Check for the correct panel names + self.assertEqual(response.data[0]['name'], 'sample_panel') + self.assertIn('content', response.data[0]) + self.assertNotIn('source', response.data[0]) + + self.assertEqual(response.data[1]['name'], 'broken_panel') + self.assertEqual(response.data[1]['source'], '/this/does/not/exist.js') + self.assertNotIn('content', response.data[1]) + + self.assertEqual(response.data[2]['name'], 'dynamic_panel') + self.assertEqual(response.data[2]['source'], '/static/plugin/sample_panel.js') + self.assertNotIn('content', response.data[2]) + + # Next, disable the global setting for UI integration + InvenTreeSetting.set_setting( + 'ENABLE_PLUGINS_INTERFACE', False, change_user=None + ) + + response = self.get(url, data=query_data) + + # There should be no panels available + self.assertEqual(0, len(response.data)) + + # Set the setting back to True for subsequent tests + InvenTreeSetting.set_setting('ENABLE_PLUGINS_INTERFACE', True, change_user=None) diff --git a/src/backend/InvenTree/plugin/installer.py b/src/backend/InvenTree/plugin/installer.py index c8b0094ae3..4d706aaad2 100644 --- a/src/backend/InvenTree/plugin/installer.py +++ b/src/backend/InvenTree/plugin/installer.py @@ -10,6 +10,7 @@ from django.core.exceptions import ValidationError from django.utils.translation import gettext_lazy as _ import plugin.models +import plugin.staticfiles from InvenTree.exceptions import log_error logger = logging.getLogger('inventree') @@ -119,6 +120,10 @@ def install_plugins_file(): log_error('pip') return False + # Update static files + plugin.staticfiles.collect_plugins_static_files() + plugin.staticfiles.clear_plugins_static_files() + # At this point, the plugins file has been installed return True @@ -256,6 +261,9 @@ def install_plugin(url=None, packagename=None, user=None, version=None): registry.reload_plugins(full_reload=True, force_reload=True, collect=True) + # Update static files + plugin.staticfiles.collect_plugins_static_files() + return ret @@ -320,6 +328,9 @@ def uninstall_plugin(cfg: plugin.models.PluginConfig, user=None, delete_config=T # Remove the plugin configuration from the database cfg.delete() + # Remove static files associated with this plugin + plugin.staticfiles.clear_plugin_static_files(cfg.key) + # Reload the plugin registry registry.reload_plugins(full_reload=True, force_reload=True, collect=True) diff --git a/src/backend/InvenTree/plugin/mixins/__init__.py b/src/backend/InvenTree/plugin/mixins/__init__.py index 1fa960c306..1de17d613d 100644 --- a/src/backend/InvenTree/plugin/mixins/__init__.py +++ b/src/backend/InvenTree/plugin/mixins/__init__.py @@ -14,6 +14,7 @@ from plugin.base.integration.ReportMixin import ReportMixin from plugin.base.integration.ScheduleMixin import ScheduleMixin from plugin.base.integration.SettingsMixin import SettingsMixin from plugin.base.integration.UrlsMixin import UrlsMixin +from plugin.base.integration.UserInterfaceMixin import UserInterfaceMixin from plugin.base.integration.ValidationMixin import ValidationMixin from plugin.base.label.mixins import LabelPrintingMixin from plugin.base.locate.mixins import LocateMixin @@ -38,5 +39,7 @@ __all__ = [ 'SingleNotificationMethod', 'SupplierBarcodeMixin', 'UrlsMixin', + 'UrlsMixin', + 'UserInterfaceMixin', 'ValidationMixin', ] diff --git a/src/backend/InvenTree/plugin/registry.py b/src/backend/InvenTree/plugin/registry.py index 7663fecb2a..65166a7921 100644 --- a/src/backend/InvenTree/plugin/registry.py +++ b/src/backend/InvenTree/plugin/registry.py @@ -742,11 +742,12 @@ class PluginsRegistry: def plugin_settings_keys(self): """A list of keys which are used to store plugin settings.""" return [ - 'ENABLE_PLUGINS_URL', - 'ENABLE_PLUGINS_NAVIGATION', 'ENABLE_PLUGINS_APP', - 'ENABLE_PLUGINS_SCHEDULE', 'ENABLE_PLUGINS_EVENTS', + 'ENABLE_PLUGINS_INTERFACE', + 'ENABLE_PLUGINS_NAVIGATION', + 'ENABLE_PLUGINS_SCHEDULE', + 'ENABLE_PLUGINS_URL', ] def calculate_plugin_hash(self): diff --git a/src/backend/InvenTree/plugin/samples/integration/templates/uidemo/custom_part_panel.html b/src/backend/InvenTree/plugin/samples/integration/templates/uidemo/custom_part_panel.html new file mode 100644 index 0000000000..72815ed67e --- /dev/null +++ b/src/backend/InvenTree/plugin/samples/integration/templates/uidemo/custom_part_panel.html @@ -0,0 +1,30 @@ +{% load i18n %} + +

Custom Plugin Panel

+ +

+This content has been rendered by a custom plugin, and will be displayed for any "part" instance +(as long as the plugin is enabled). +This content has been rendered on the server, using the django templating system. +

+ +
Part Details
+ + + + + + + + + + + + + + + + + + +
Part Name{{ part.name }}
Part Description{{ part.description }}
Part Category{{ part.category.pathstring }}
Part IPN{% if part.IPN %}{{ part.IPN }}{% else %}No IPN specified{% endif %}
diff --git a/src/backend/InvenTree/plugin/samples/integration/user_interface_sample.py b/src/backend/InvenTree/plugin/samples/integration/user_interface_sample.py new file mode 100644 index 0000000000..5b0fbf2f77 --- /dev/null +++ b/src/backend/InvenTree/plugin/samples/integration/user_interface_sample.py @@ -0,0 +1,124 @@ +"""Sample plugin which demonstrates user interface integrations.""" + +from django.utils.translation import gettext_lazy as _ + +from part.models import Part +from plugin import InvenTreePlugin +from plugin.helpers import render_template, render_text +from plugin.mixins import SettingsMixin, UserInterfaceMixin + + +class SampleUserInterfacePlugin(SettingsMixin, UserInterfaceMixin, InvenTreePlugin): + """A sample plugin which demonstrates user interface integrations.""" + + NAME = 'SampleUI' + SLUG = 'sampleui' + TITLE = 'Sample User Interface Plugin' + DESCRIPTION = 'A sample plugin which demonstrates user interface integrations' + VERSION = '1.0' + + SETTINGS = { + 'ENABLE_PART_PANELS': { + 'name': _('Enable Part Panels'), + 'description': _('Enable custom panels for Part views'), + 'default': True, + 'validator': bool, + }, + 'ENABLE_PURCHASE_ORDER_PANELS': { + 'name': _('Enable Purchase Order Panels'), + 'description': _('Enable custom panels for Purchase Order views'), + 'default': False, + 'validator': bool, + }, + 'ENABLE_BROKEN_PANELS': { + 'name': _('Enable Broken Panels'), + 'description': _('Enable broken panels for testing'), + 'default': True, + 'validator': bool, + }, + 'ENABLE_DYNAMIC_PANEL': { + 'name': _('Enable Dynamic Panel'), + 'description': _('Enable dynamic panels for testing'), + 'default': True, + 'validator': bool, + }, + } + + def get_custom_panels(self, instance_type: str, instance_id: int, request): + """Return a list of custom panels to be injected into the UI.""" + panels = [] + + # First, add a custom panel which will appear on every type of page + # This panel will contain a simple message + + content = render_text( + """ + This is a sample panel which appears on every page. + It renders a simple string of HTML content. + +
+
Instance Details:
+
    +
  • Instance Type: {{ instance_type }}
  • +
  • Instance ID: {{ instance_id }}
  • +
+ """, + context={'instance_type': instance_type, 'instance_id': instance_id}, + ) + + panels.append({ + 'name': 'sample_panel', + 'label': 'Sample Panel', + 'content': content, + }) + + # A broken panel which tries to load a non-existent JS file + if self.get_setting('ENABLE_BROKEN_PANElS'): + panels.append({ + 'name': 'broken_panel', + 'label': 'Broken Panel', + 'source': '/this/does/not/exist.js', + }) + + # A dynamic panel which will be injected into the UI (loaded from external file) + if self.get_setting('ENABLE_DYNAMIC_PANEL'): + panels.append({ + 'name': 'dynamic_panel', + 'label': 'Dynamic Part Panel', + 'source': '/static/plugin/sample_panel.js', + 'icon': 'part', + }) + + # Next, add a custom panel which will appear on the 'part' page + # Note that this content is rendered from a template file, + # using the django templating system + if self.get_setting('ENABLE_PART_PANELS') and instance_type == 'part': + try: + part = Part.objects.get(pk=instance_id) + except (Part.DoesNotExist, ValueError): + part = None + + # Note: This panel will *only* be available if the part is active + if part and part.active: + content = render_template( + self, 'uidemo/custom_part_panel.html', context={'part': part} + ) + + panels.append({ + 'name': 'part_panel', + 'label': 'Part Panel', + 'content': content, + }) + + # Next, add a custom panel which will appear on the 'purchaseorder' page + if ( + self.get_setting('ENABLE_PURCHASE_ORDER_PANELS') + and instance_type == 'purchaseorder' + ): + panels.append({ + 'name': 'purchase_order_panel', + 'label': 'Purchase Order Panel', + 'content': 'This is a custom panel which appears on the Purchase Order view page.', + }) + + return panels diff --git a/src/backend/InvenTree/plugin/samples/static/plugin/sample_panel.js b/src/backend/InvenTree/plugin/samples/static/plugin/sample_panel.js new file mode 100644 index 0000000000..c0a0f5d1f4 --- /dev/null +++ b/src/backend/InvenTree/plugin/samples/static/plugin/sample_panel.js @@ -0,0 +1,47 @@ +/** + * A sample panel plugin for InvenTree. + * + * This plugin file is dynamically loaded, + * as specified in the plugin/samples/integration/user_interface_sample.py + * + * It provides a simple example of how panels can be dynamically rendered, + * as well as dynamically hidden, based on the provided context. + */ + +export function renderPanel(target, context) { + + if (!target) { + console.error("No target provided to renderPanel"); + return; + } + + target.innerHTML = ` +

Dynamic Panel Content

+ +

This panel has been dynamically rendered by the plugin system.

+

It can be hidden or displayed based on the provided context.

+ +
+
Context:
+ +
    +
  • Username: ${context.user.username()}
  • +
  • Is Staff: ${context.user.isStaff() ? "YES": "NO"}
  • +
  • Model Type: ${context.model}
  • +
  • Instance ID: ${context.id}
  • + `; + +} + + +// Dynamically hide the panel based on the provided context +export function isPanelHidden(context) { + + // Hide the panel if the user is not staff + if (!context?.user?.isStaff()) { + return true; + } + + // Only display for active parts + return context.model != 'part' || !context.instance || !context.instance.active; +} diff --git a/src/backend/InvenTree/plugin/serializers.py b/src/backend/InvenTree/plugin/serializers.py index eec4cd0420..787c9ad2b4 100644 --- a/src/backend/InvenTree/plugin/serializers.py +++ b/src/backend/InvenTree/plugin/serializers.py @@ -301,3 +301,46 @@ class PluginRelationSerializer(serializers.PrimaryKeyRelatedField): def to_representation(self, value): """Return the 'key' of the PluginConfig object.""" return value.key + + +class PluginPanelSerializer(serializers.Serializer): + """Serializer for a plugin panel.""" + + class Meta: + """Meta for serializer.""" + + fields = [ + 'plugin', + 'name', + 'label', + # Following fields are optional + 'icon', + 'content', + 'source', + ] + + # Required fields + plugin = serializers.CharField( + label=_('Plugin Key'), required=True, allow_blank=False + ) + + name = serializers.CharField( + label=_('Panel Name'), required=True, allow_blank=False + ) + + label = serializers.CharField( + label=_('Panel Title'), required=True, allow_blank=False + ) + + # Optional fields + icon = serializers.CharField( + label=_('Panel Icon'), required=False, allow_blank=True + ) + + content = serializers.CharField( + label=_('Panel Content (HTML)'), required=False, allow_blank=True + ) + + source = serializers.CharField( + label=_('Panel Source (javascript)'), required=False, allow_blank=True + ) diff --git a/src/backend/InvenTree/plugin/staticfiles.py b/src/backend/InvenTree/plugin/staticfiles.py index f75f5ba755..2d4821f662 100644 --- a/src/backend/InvenTree/plugin/staticfiles.py +++ b/src/backend/InvenTree/plugin/staticfiles.py @@ -32,6 +32,8 @@ def clear_static_dir(path, recursive=True): # Finally, delete the directory itself to remove orphan folders when uninstalling a plugin staticfiles_storage.delete(path) + logger.info('Cleared static directory: %s', path) + def collect_plugins_static_files(): """Copy static files from all installed plugins into the static directory.""" @@ -43,6 +45,26 @@ def collect_plugins_static_files(): copy_plugin_static_files(slug, check_reload=False) +def clear_plugins_static_files(): + """Clear out static files for plugins which are no longer active.""" + installed_plugins = set(registry.plugins.keys()) + + path = 'plugins/' + + # Check that the directory actually exists + if not staticfiles_storage.exists(path): + return + + # Get all static files in the 'plugins' static directory + dirs, _files = staticfiles_storage.listdir('plugins/') + + for d in dirs: + # Check if the directory is a plugin directory + if d not in installed_plugins: + # Clear out the static files for this plugin + clear_static_dir(f'plugins/{d}/', recursive=True) + + def copy_plugin_static_files(slug, check_reload=True): """Copy static files for the specified plugin.""" if check_reload: @@ -93,3 +115,8 @@ def copy_plugin_static_files(slug, check_reload=True): copied += 1 logger.info("Copied %s static files for plugin '%s'.", copied, slug) + + +def clear_plugin_static_files(slug: str, recursive: bool = True): + """Clear static files for the specified plugin.""" + clear_static_dir(f'plugins/{slug}/', recursive=recursive) diff --git a/src/frontend/playwright.config.ts b/src/frontend/playwright.config.ts index 2a48cd0288..f42af97995 100644 --- a/src/frontend/playwright.config.ts +++ b/src/frontend/playwright.config.ts @@ -38,7 +38,8 @@ export default defineConfig({ { command: 'invoke dev.server -a 127.0.0.1:8000', env: { - INVENTREE_DEBUG: 'True' + INVENTREE_DEBUG: 'True', + INVENTREE_PLUGINS_ENABLED: 'True' }, url: 'http://127.0.0.1:8000/api/', reuseExistingServer: !process.env.CI, diff --git a/src/frontend/src/components/nav/Panel.tsx b/src/frontend/src/components/nav/Panel.tsx new file mode 100644 index 0000000000..d03602e2f7 --- /dev/null +++ b/src/frontend/src/components/nav/Panel.tsx @@ -0,0 +1,14 @@ +import { ReactNode } from 'react'; + +/** + * Type used to specify a single panel in a panel group + */ +export type PanelType = { + name: string; + label: string; + icon?: ReactNode; + content: ReactNode; + hidden?: boolean; + disabled?: boolean; + showHeadline?: boolean; +}; diff --git a/src/frontend/src/components/nav/PanelGroup.tsx b/src/frontend/src/components/nav/PanelGroup.tsx index bdc36bff03..f8b6bc3d45 100644 --- a/src/frontend/src/components/nav/PanelGroup.tsx +++ b/src/frontend/src/components/nav/PanelGroup.tsx @@ -20,29 +20,34 @@ import { useParams } from 'react-router-dom'; +import { ModelType } from '../../enums/ModelType'; import { identifierString } from '../../functions/conversion'; import { cancelEvent } from '../../functions/events'; import { navigateToLink } from '../../functions/navigation'; +import { usePluginPanels } from '../../hooks/UsePluginPanels'; import { useLocalState } from '../../states/LocalState'; import { Boundary } from '../Boundary'; import { StylishText } from '../items/StylishText'; +import { PanelType } from './Panel'; /** - * Type used to specify a single panel in a panel group + * Set of properties which define a panel group: + * + * @param pageKey - Unique key for this panel group + * @param panels - List of panels to display + * @param model - The target model for this panel group (e.g. 'part' / 'salesorder') + * @param id - The target ID for this panel group (set to *null* for groups which do not target a specific model instance) + * @param instance - The target model instance for this panel group + * @param selectedPanel - The currently selected panel + * @param onPanelChange - Callback when the active panel changes + * @param collapsible - If true, the panel group can be collapsed (defaults to true) */ -export type PanelType = { - name: string; - label: string; - icon?: ReactNode; - content: ReactNode; - hidden?: boolean; - disabled?: boolean; - showHeadline?: boolean; -}; - export type PanelProps = { pageKey: string; panels: PanelType[]; + instance?: any; + model?: ModelType | string; + id?: number | null; selectedPanel?: string; onPanelChange?: (panel: string) => void; collapsible?: boolean; @@ -53,35 +58,39 @@ function BasePanelGroup({ panels, onPanelChange, selectedPanel, + instance, + model, + id, collapsible = true }: Readonly): ReactNode { + const localState = useLocalState(); const location = useLocation(); const navigate = useNavigate(); + const { panel } = useParams(); + const [expanded, setExpanded] = useState(true); + + // Hook to load plugins for this panel + const pluginPanels = usePluginPanels({ + model: model, + instance: instance, + id: id + }); + + const allPanels = useMemo( + () => [...panels, ...pluginPanels], + [panels, pluginPanels] + ); + const activePanels = useMemo( - () => panels.filter((panel) => !panel.hidden && !panel.disabled), - [panels] + () => allPanels.filter((panel) => !panel.hidden && !panel.disabled), + [allPanels] ); - const setLastUsedPanel = useLocalState((state) => - state.setLastUsedPanel(pageKey) - ); - - useEffect(() => { - if (panel) { - setLastUsedPanel(panel); - } - // panel is intentionally no dependency as this should only run on initial render - }, [setLastUsedPanel]); - // Callback when the active panel changes const handlePanelChange = useCallback( - (panel: string | null, event?: any) => { - if (activePanels.findIndex((p) => p.name === panel) === -1) { - panel = ''; - } - + (panel: string, event?: any) => { if (event && (event?.ctrlKey || event?.shiftKey)) { const url = `${location.pathname}/../${panel}`; cancelEvent(event); @@ -90,12 +99,14 @@ function BasePanelGroup({ navigate(`../${panel}`); } + localState.setLastUsedPanel(pageKey)(panel); + // Optionally call external callback hook if (panel && onPanelChange) { onPanelChange(panel); } }, - [activePanels, setLastUsedPanel, navigate, location, onPanelChange] + [activePanels, navigate, location, onPanelChange] ); // if the selected panel state changes update the current panel @@ -105,32 +116,32 @@ function BasePanelGroup({ } }, [selectedPanel, panel]); - // Update the active panel when panels changes and the active is no longer available - useEffect(() => { + // Determine the current panels selection (must be a valid panel) + const currentPanel: string = useMemo(() => { if (activePanels.findIndex((p) => p.name === panel) === -1) { - setLastUsedPanel(''); - return navigate('../'); + return activePanels[0]?.name ?? ''; + } else { + return panel ?? ''; } }, [activePanels, panel]); - const [expanded, setExpanded] = useState(true); - return ( - + - {panels.map( + {allPanels.map( (panel) => !panel.hidden && ( - {panels.map( + {allPanels.map( (panel) => !panel.hidden && ( { + if (!pluginProps.source) { + // No custom source supplied - panel is not hidden + return false; + } + + const func = await findExternalPluginFunction( + pluginProps.source, + 'isPanelHidden' + ); + + if (!func) { + return false; + } + + try { + return func(pluginContext); + } catch (error) { + console.error( + 'Error occurred while checking if plugin panel is hidden:', + error + ); + return true; + } +} + +/** + * A custom panel which can be used to display plugin content. + * + * - Content is loaded dynamically (via the API) when a page is first loaded + * - Content can be provided from an external javascript module, or with raw HTML + * + * If content is provided from an external source, it is expected to define a function `render_panel` which will render the content. + * const render_panel = (element: HTMLElement, params: any) => {...} + * + * Where: + * - `element` is the HTML element to render the content into + * - `params` is the set of run-time parameters to pass to the content rendering function + */ +export default function PluginPanelContent({ + pluginProps, + pluginContext +}: { + pluginProps: PluginPanelProps; + pluginContext: PluginContext; +}): ReactNode { + const ref = useRef(); + + const [error, setError] = useState(undefined); + + const reloadPluginContent = async () => { + // If a "source" URL is provided, load the content from that URL + if (pluginProps.source) { + findExternalPluginFunction(pluginProps.source, 'renderPanel').then( + (func) => { + if (func) { + try { + func(ref.current, pluginContext); + setError(''); + } catch (error) { + setError(t`Error occurred while rendering plugin content`); + } + } else { + setError(t`Plugin did not provide panel rendering function`); + } + } + ); + } else if (pluginProps.content) { + // If content is provided directly, render it into the panel + if (ref.current) { + ref.current?.setHTMLUnsafe(pluginProps.content.toString()); + setError(''); + } + } else { + // If no content is provided, display a placeholder + setError(t`No content provided for this plugin`); + } + }; + + useEffect(() => { + reloadPluginContent(); + }, [pluginProps, pluginContext]); + + return ( + + {error && ( + } + > + {error} + + )} +
    +
    + ); +} diff --git a/src/frontend/src/components/plugins/PluginSource.tsx b/src/frontend/src/components/plugins/PluginSource.tsx new file mode 100644 index 0000000000..c01f1115ab --- /dev/null +++ b/src/frontend/src/components/plugins/PluginSource.tsx @@ -0,0 +1,47 @@ +import { useLocalState } from '../../states/LocalState'; + +/* + * Load an external plugin source from a URL. + */ +export async function loadExternalPluginSource(source: string) { + const host = useLocalState.getState().host; + + source = source.trim(); + + // If no source is provided, clear the plugin content + if (!source) { + return null; + } + + // If the source is a relative URL, prefix it with the host URL + if (source.startsWith('/')) { + source = `${host}${source}`; + } + + const module = await import(/* @vite-ignore */ source) + .catch((error) => { + console.error('Failed to load plugin source:', error); + return null; + }) + .then((module) => { + return module; + }); + + return module; +} + +/* + * Find a named function in an external plugin source. + */ +export async function findExternalPluginFunction( + source: string, + functionName: string +) { + const module = await loadExternalPluginSource(source); + + if (module && module[functionName]) { + return module[functionName]; + } + + return null; +} diff --git a/src/frontend/src/enums/ApiEndpoints.tsx b/src/frontend/src/enums/ApiEndpoints.tsx index 015a22a6a6..d99cd90ef1 100644 --- a/src/frontend/src/enums/ApiEndpoints.tsx +++ b/src/frontend/src/enums/ApiEndpoints.tsx @@ -182,6 +182,9 @@ export enum ApiEndpoints { plugin_activate = 'plugins/:key/activate/', plugin_uninstall = 'plugins/:key/uninstall/', + // User interface plugin endpoints + plugin_panel_list = 'plugins/ui/panels/', + // Machine API endpoints machine_types_list = 'machine/types/', machine_driver_list = 'machine/drivers/', diff --git a/src/frontend/src/functions/icons.tsx b/src/frontend/src/functions/icons.tsx index 31c5617b00..d9047e3575 100644 --- a/src/frontend/src/functions/icons.tsx +++ b/src/frontend/src/functions/icons.tsx @@ -57,6 +57,7 @@ import { IconPaperclip, IconPhone, IconPhoto, + IconPlug, IconPoint, IconPrinter, IconProgressCheck, @@ -217,7 +218,8 @@ const icons = { destination: IconFlag, repeat_destination: IconFlagShare, unlink: IconUnlink, - success: IconCircleCheck + success: IconCircleCheck, + plugin: IconPlug }; export type InvenTreeIconType = keyof typeof icons; diff --git a/src/frontend/src/hooks/UsePluginPanels.tsx b/src/frontend/src/hooks/UsePluginPanels.tsx new file mode 100644 index 0000000000..710b39f1df --- /dev/null +++ b/src/frontend/src/hooks/UsePluginPanels.tsx @@ -0,0 +1,149 @@ +import { useMantineColorScheme, useMantineTheme } from '@mantine/core'; +import { useQuery } from '@tanstack/react-query'; +import { useEffect, useMemo, useState } from 'react'; +import { useNavigate } from 'react-router-dom'; + +import { api } from '../App'; +import { PanelType } from '../components/nav/Panel'; +import { PluginContext } from '../components/plugins/PluginContext'; +import { + PluginPanelProps, + isPluginPanelHidden +} from '../components/plugins/PluginPanel'; +import PluginPanelContent from '../components/plugins/PluginPanel'; +import { ApiEndpoints } from '../enums/ApiEndpoints'; +import { ModelType } from '../enums/ModelType'; +import { identifierString } from '../functions/conversion'; +import { InvenTreeIcon, InvenTreeIconType } from '../functions/icons'; +import { apiUrl } from '../states/ApiState'; +import { useLocalState } from '../states/LocalState'; +import { + useGlobalSettingsState, + useUserSettingsState +} from '../states/SettingsState'; +import { useUserState } from '../states/UserState'; + +export function usePluginPanels({ + instance, + model, + id +}: { + instance?: any; + model?: ModelType | string; + id?: string | number | null; +}): PanelType[] { + const host = useLocalState.getState().host; + const navigate = useNavigate(); + const user = useUserState(); + const { colorScheme } = useMantineColorScheme(); + const theme = useMantineTheme(); + const globalSettings = useGlobalSettingsState(); + const userSettings = useUserSettingsState(); + + const pluginPanelsEnabled: boolean = useMemo( + () => globalSettings.isSet('ENABLE_PLUGINS_INTERFACE'), + [globalSettings] + ); + + // API query to fetch initial information on available plugin panels + const { data: pluginData } = useQuery({ + enabled: pluginPanelsEnabled && !!model && id !== undefined, + queryKey: ['custom-plugin-panels', model, id], + queryFn: async () => { + if (!pluginPanelsEnabled || !model) { + return Promise.resolve([]); + } + + return api + .get(apiUrl(ApiEndpoints.plugin_panel_list), { + params: { + target_model: model, + target_id: id + } + }) + .then((response: any) => response.data) + .catch((error: any) => { + console.error('Failed to fetch plugin panels:', error); + return []; + }); + } + }); + + // Cache the context data which is delivered to the plugins + const contextData: PluginContext = useMemo(() => { + return { + model: model, + id: id, + instance: instance, + user: user, + host: host, + api: api, + navigate: navigate, + globalSettings: globalSettings, + userSettings: userSettings, + theme: theme, + colorScheme: colorScheme + }; + }, [ + model, + id, + instance, + user, + host, + api, + navigate, + globalSettings, + userSettings, + theme, + colorScheme + ]); + + // Track which panels are hidden: { panelName: true/false } + // We need to memoize this as the plugins can determine this dynamically + const [panelState, setPanelState] = useState>({}); + + // Clear the visibility cache when the plugin data changes + // This will force the plugin panels to re-calculate their visibility + useEffect(() => { + pluginData?.forEach((props: PluginPanelProps) => { + const identifier = identifierString( + `plugin-panel-${props.plugin}-${props.name}` + ); + + // Check if the panel is hidden (defaults to true until we know otherwise) + isPluginPanelHidden({ + pluginProps: props, + pluginContext: contextData + }).then((result) => { + setPanelState((prev) => ({ ...prev, [identifier]: result })); + }); + }); + }, [pluginData, contextData]); + + const pluginPanels: PanelType[] = useMemo(() => { + return ( + pluginData?.map((props: PluginPanelProps) => { + const iconName: string = props.icon || 'plugin'; + const identifier = identifierString( + `plugin-panel-${props.plugin}-${props.name}` + ); + const isHidden: boolean = panelState[identifier] ?? true; + + return { + name: identifier, + label: props.label, + icon: , + content: ( + + ), + hidden: isHidden + }; + }) ?? [] + ); + }, [panelState, pluginData, contextData]); + + return pluginPanels; +} diff --git a/src/frontend/src/main.tsx b/src/frontend/src/main.tsx index 3a3be69dc7..118e02ee55 100644 --- a/src/frontend/src/main.tsx +++ b/src/frontend/src/main.tsx @@ -11,6 +11,7 @@ import ReactDOM from 'react-dom/client'; import 'react-grid-layout/css/styles.css'; import 'react-resizable/css/styles.css'; +import { api } from './App'; import { HostList } from './states/states'; import MainView from './views/MainView'; @@ -25,6 +26,8 @@ declare global { sentry_dsn?: string; environment?: string; }; + InvenTreeAPI: typeof api; + React: typeof React; } } @@ -99,3 +102,6 @@ ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( if (window.location.pathname === '/') { window.location.replace(`/${base_url}`); } + +window.React = React; +window.InvenTreeAPI = api; diff --git a/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx b/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx index 0b980a1df9..a34e5e15ca 100644 --- a/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx +++ b/src/frontend/src/pages/Index/Settings/AdminCenter/Index.tsx @@ -28,7 +28,8 @@ import { lazy, useMemo } from 'react'; import PermissionDenied from '../../../../components/errors/PermissionDenied'; import { PlaceholderPill } from '../../../../components/items/Placeholder'; -import { PanelGroup, PanelType } from '../../../../components/nav/PanelGroup'; +import { PanelType } from '../../../../components/nav/Panel'; +import { PanelGroup } from '../../../../components/nav/PanelGroup'; import { SettingsHeader } from '../../../../components/nav/SettingsHeader'; import { GlobalSettingList } from '../../../../components/settings/SettingList'; import { Loadable } from '../../../../functions/loading'; diff --git a/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx b/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx index 0882f93ddb..7dca628bcd 100644 --- a/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx +++ b/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx @@ -1,12 +1,14 @@ import { Trans, t } from '@lingui/macro'; import { Accordion, Alert, Stack } from '@mantine/core'; import { IconInfoCircle } from '@tabler/icons-react'; +import { userInfo } from 'os'; import { lazy } from 'react'; import { StylishText } from '../../../../components/items/StylishText'; import { GlobalSettingList } from '../../../../components/settings/SettingList'; import { Loadable } from '../../../../functions/loading'; import { useServerApiState } from '../../../../states/ApiState'; +import { useUserState } from '../../../../states/UserState'; const PluginListTable = Loadable( lazy(() => import('../../../../tables/plugin/PluginListTable')) @@ -21,6 +23,8 @@ export default function PluginManagementPanel() { (state) => state.server.plugins_enabled ); + const user = useUserState(); + return ( {!pluginsEnabled && ( @@ -45,15 +49,6 @@ export default function PluginManagementPanel() { - - - {t`Plugin Errors`} - - - - - - {t`Plugin Settings`} @@ -63,6 +58,7 @@ export default function PluginManagementPanel() { keys={[ 'ENABLE_PLUGINS_SCHEDULE', 'ENABLE_PLUGINS_EVENTS', + 'ENABLE_PLUGINS_INTERFACE', 'ENABLE_PLUGINS_URL', 'ENABLE_PLUGINS_NAVIGATION', 'ENABLE_PLUGINS_APP', @@ -72,6 +68,16 @@ export default function PluginManagementPanel() { /> + {user.isSuperuser() && ( + + + {t`Plugin Errors`} + + + + + + )} ); diff --git a/src/frontend/src/pages/Index/Settings/SystemSettings.tsx b/src/frontend/src/pages/Index/Settings/SystemSettings.tsx index 15c3122020..29c727a2a7 100644 --- a/src/frontend/src/pages/Index/Settings/SystemSettings.tsx +++ b/src/frontend/src/pages/Index/Settings/SystemSettings.tsx @@ -21,7 +21,8 @@ import { useMemo } from 'react'; import PermissionDenied from '../../../components/errors/PermissionDenied'; import { PlaceholderPanel } from '../../../components/items/Placeholder'; -import { PanelGroup, PanelType } from '../../../components/nav/PanelGroup'; +import { PanelType } from '../../../components/nav/Panel'; +import { PanelGroup } from '../../../components/nav/PanelGroup'; import { SettingsHeader } from '../../../components/nav/SettingsHeader'; import { GlobalSettingList } from '../../../components/settings/SettingList'; import { useServerApiState } from '../../../states/ApiState'; diff --git a/src/frontend/src/pages/Index/Settings/UserSettings.tsx b/src/frontend/src/pages/Index/Settings/UserSettings.tsx index 437091ac83..a74cb755cc 100644 --- a/src/frontend/src/pages/Index/Settings/UserSettings.tsx +++ b/src/frontend/src/pages/Index/Settings/UserSettings.tsx @@ -11,7 +11,8 @@ import { } from '@tabler/icons-react'; import { useMemo } from 'react'; -import { PanelGroup, PanelType } from '../../../components/nav/PanelGroup'; +import { PanelType } from '../../../components/nav/Panel'; +import { PanelGroup } from '../../../components/nav/PanelGroup'; import { SettingsHeader } from '../../../components/nav/SettingsHeader'; import { UserSettingList } from '../../../components/settings/SettingList'; import { useUserState } from '../../../states/UserState'; diff --git a/src/frontend/src/pages/build/BuildDetail.tsx b/src/frontend/src/pages/build/BuildDetail.tsx index 576e2095be..10ebab4e8c 100644 --- a/src/frontend/src/pages/build/BuildDetail.tsx +++ b/src/frontend/src/pages/build/BuildDetail.tsx @@ -33,7 +33,8 @@ import { } from '../../components/items/ActionDropdown'; import InstanceDetail from '../../components/nav/InstanceDetail'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; import { ModelType } from '../../enums/ModelType'; @@ -536,7 +537,13 @@ export default function BuildDetail() { ]} actions={buildActions} /> - + diff --git a/src/frontend/src/pages/company/CompanyDetail.tsx b/src/frontend/src/pages/company/CompanyDetail.tsx index 3227249d69..e21b9dd757 100644 --- a/src/frontend/src/pages/company/CompanyDetail.tsx +++ b/src/frontend/src/pages/company/CompanyDetail.tsx @@ -31,7 +31,8 @@ import { import { Breadcrumb } from '../../components/nav/BreadcrumbList'; import InstanceDetail from '../../components/nav/InstanceDetail'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; import { ModelType } from '../../enums/ModelType'; import { UserRoles } from '../../enums/Roles'; @@ -344,7 +345,13 @@ export default function CompanyDetail(props: Readonly) { editAction={editCompany.open} editEnabled={user.hasChangePermission(ModelType.company)} /> - + diff --git a/src/frontend/src/pages/company/ManufacturerPartDetail.tsx b/src/frontend/src/pages/company/ManufacturerPartDetail.tsx index 64265c2f55..a552d18605 100644 --- a/src/frontend/src/pages/company/ManufacturerPartDetail.tsx +++ b/src/frontend/src/pages/company/ManufacturerPartDetail.tsx @@ -23,7 +23,8 @@ import { } from '../../components/items/ActionDropdown'; import InstanceDetail from '../../components/nav/InstanceDetail'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; import { ModelType } from '../../enums/ModelType'; import { UserRoles } from '../../enums/Roles'; @@ -284,7 +285,13 @@ export default function ManufacturerPartDetail() { editAction={editManufacturerPart.open} editEnabled={user.hasChangePermission(ModelType.manufacturerpart)} /> - + diff --git a/src/frontend/src/pages/company/SupplierPartDetail.tsx b/src/frontend/src/pages/company/SupplierPartDetail.tsx index d0471cb125..2379ed236a 100644 --- a/src/frontend/src/pages/company/SupplierPartDetail.tsx +++ b/src/frontend/src/pages/company/SupplierPartDetail.tsx @@ -25,7 +25,8 @@ import { } from '../../components/items/ActionDropdown'; import InstanceDetail from '../../components/nav/InstanceDetail'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; import { ModelType } from '../../enums/ModelType'; import { UserRoles } from '../../enums/Roles'; @@ -361,7 +362,13 @@ export default function SupplierPartDetail() { editAction={editSupplierPart.open} editEnabled={user.hasChangePermission(ModelType.supplierpart)} /> - + diff --git a/src/frontend/src/pages/part/CategoryDetail.tsx b/src/frontend/src/pages/part/CategoryDetail.tsx index 69c0180ca7..9a7225464a 100644 --- a/src/frontend/src/pages/part/CategoryDetail.tsx +++ b/src/frontend/src/pages/part/CategoryDetail.tsx @@ -21,7 +21,8 @@ import { ApiIcon } from '../../components/items/ApiIcon'; import InstanceDetail from '../../components/nav/InstanceDetail'; import NavigationTree from '../../components/nav/NavigationTree'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; import { ModelType } from '../../enums/ModelType'; import { UserRoles } from '../../enums/Roles'; @@ -229,7 +230,7 @@ export default function CategoryDetail() { ]; }, [id, user, category.pk]); - const categoryPanels: PanelType[] = useMemo( + const panels: PanelType[] = useMemo( () => [ { name: 'details', @@ -311,7 +312,13 @@ export default function CategoryDetail() { editAction={editCategory.open} editEnabled={user.hasChangePermission(ModelType.partcategory)} /> - + diff --git a/src/frontend/src/pages/part/PartDetail.tsx b/src/frontend/src/pages/part/PartDetail.tsx index 62fd19fdc1..08b769f905 100644 --- a/src/frontend/src/pages/part/PartDetail.tsx +++ b/src/frontend/src/pages/part/PartDetail.tsx @@ -58,7 +58,8 @@ import { StylishText } from '../../components/items/StylishText'; import InstanceDetail from '../../components/nav/InstanceDetail'; import NavigationTree from '../../components/nav/NavigationTree'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { RenderPart } from '../../components/render/Part'; import { formatPriceRange } from '../../defaults/formatters'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; @@ -1122,7 +1123,13 @@ export default function PartDetail() { ) } /> - + {transferStockItems.modal} {countStockItems.modal} diff --git a/src/frontend/src/pages/purchasing/PurchaseOrderDetail.tsx b/src/frontend/src/pages/purchasing/PurchaseOrderDetail.tsx index 91ead6b4c4..ef3c177195 100644 --- a/src/frontend/src/pages/purchasing/PurchaseOrderDetail.tsx +++ b/src/frontend/src/pages/purchasing/PurchaseOrderDetail.tsx @@ -28,7 +28,8 @@ import { import { StylishText } from '../../components/items/StylishText'; import InstanceDetail from '../../components/nav/InstanceDetail'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { formatCurrency } from '../../defaults/formatters'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; @@ -469,7 +470,13 @@ export default function PurchaseOrderDetail() { editAction={editPurchaseOrder.open} editEnabled={user.hasChangePermission(ModelType.purchaseorder)} /> - + diff --git a/src/frontend/src/pages/purchasing/PurchasingIndex.tsx b/src/frontend/src/pages/purchasing/PurchasingIndex.tsx index 13c91771b7..9128c0c34f 100644 --- a/src/frontend/src/pages/purchasing/PurchasingIndex.tsx +++ b/src/frontend/src/pages/purchasing/PurchasingIndex.tsx @@ -58,7 +58,12 @@ export default function PurchasingIndex() { return ( - + ); } diff --git a/src/frontend/src/pages/sales/ReturnOrderDetail.tsx b/src/frontend/src/pages/sales/ReturnOrderDetail.tsx index 5e8ff73937..f20dcc565e 100644 --- a/src/frontend/src/pages/sales/ReturnOrderDetail.tsx +++ b/src/frontend/src/pages/sales/ReturnOrderDetail.tsx @@ -27,7 +27,8 @@ import { import { StylishText } from '../../components/items/StylishText'; import InstanceDetail from '../../components/nav/InstanceDetail'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { formatCurrency } from '../../defaults/formatters'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; @@ -458,7 +459,13 @@ export default function ReturnOrderDetail() { editAction={editReturnOrder.open} editEnabled={user.hasChangePermission(ModelType.returnorder)} /> - + diff --git a/src/frontend/src/pages/sales/SalesIndex.tsx b/src/frontend/src/pages/sales/SalesIndex.tsx index 16a94174e5..3a8276ea78 100644 --- a/src/frontend/src/pages/sales/SalesIndex.tsx +++ b/src/frontend/src/pages/sales/SalesIndex.tsx @@ -51,7 +51,12 @@ export default function PurchasingIndex() { return ( - + ); } diff --git a/src/frontend/src/pages/sales/SalesOrderDetail.tsx b/src/frontend/src/pages/sales/SalesOrderDetail.tsx index 845eaee9c2..1426a3c5be 100644 --- a/src/frontend/src/pages/sales/SalesOrderDetail.tsx +++ b/src/frontend/src/pages/sales/SalesOrderDetail.tsx @@ -30,7 +30,8 @@ import { import { StylishText } from '../../components/items/StylishText'; import InstanceDetail from '../../components/nav/InstanceDetail'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { formatCurrency } from '../../defaults/formatters'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; @@ -509,7 +510,13 @@ export default function SalesOrderDetail() { editAction={editSalesOrder.open} editEnabled={user.hasChangePermission(ModelType.salesorder)} /> - + diff --git a/src/frontend/src/pages/stock/LocationDetail.tsx b/src/frontend/src/pages/stock/LocationDetail.tsx index f6997abb76..2fdc34bc3c 100644 --- a/src/frontend/src/pages/stock/LocationDetail.tsx +++ b/src/frontend/src/pages/stock/LocationDetail.tsx @@ -20,7 +20,8 @@ import { ApiIcon } from '../../components/items/ApiIcon'; import InstanceDetail from '../../components/nav/InstanceDetail'; import NavigationTree from '../../components/nav/NavigationTree'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; import { ModelType } from '../../enums/ModelType'; import { UserRoles } from '../../enums/Roles'; @@ -387,7 +388,13 @@ export default function Stock() { setTreeOpen(true); }} /> - + {transferStockItems.modal} {countStockItems.modal} diff --git a/src/frontend/src/pages/stock/StockDetail.tsx b/src/frontend/src/pages/stock/StockDetail.tsx index 5c6b9459e9..695ec84ba4 100644 --- a/src/frontend/src/pages/stock/StockDetail.tsx +++ b/src/frontend/src/pages/stock/StockDetail.tsx @@ -33,7 +33,8 @@ import { StylishText } from '../../components/items/StylishText'; import InstanceDetail from '../../components/nav/InstanceDetail'; import NavigationTree from '../../components/nav/NavigationTree'; import { PageDetail } from '../../components/nav/PageDetail'; -import { PanelGroup, PanelType } from '../../components/nav/PanelGroup'; +import { PanelType } from '../../components/nav/Panel'; +import { PanelGroup } from '../../components/nav/PanelGroup'; import { StatusRenderer } from '../../components/render/StatusRenderer'; import { ApiEndpoints } from '../../enums/ApiEndpoints'; import { ModelType } from '../../enums/ModelType'; @@ -616,7 +617,13 @@ export default function StockDetail() { }} actions={stockActions} /> - + {editStockItem.modal} {duplicateStockItem.modal} {deleteStockItem.modal} diff --git a/src/frontend/src/states/UserState.tsx b/src/frontend/src/states/UserState.tsx index ededb4ca4b..6678e9dba0 100644 --- a/src/frontend/src/states/UserState.tsx +++ b/src/frontend/src/states/UserState.tsx @@ -8,7 +8,7 @@ import { clearCsrfCookie } from '../functions/auth'; import { apiUrl } from './ApiState'; import { UserProps } from './states'; -interface UserStateProps { +export interface UserStateProps { user: UserProps | undefined; token: string | undefined; username: () => string; diff --git a/src/frontend/src/tables/plugin/PluginListTable.tsx b/src/frontend/src/tables/plugin/PluginListTable.tsx index 98f5aaf730..b84da7b660 100644 --- a/src/frontend/src/tables/plugin/PluginListTable.tsx +++ b/src/frontend/src/tables/plugin/PluginListTable.tsx @@ -352,7 +352,10 @@ export default function PluginListTable() { // Determine available actions for a given plugin const rowActions = useCallback( (record: any): RowAction[] => { - // TODO: Plugin actions should be updated based on on the users's permissions + // Only superuser can perform plugin actions + if (!user.isSuperuser()) { + return []; + } let actions: RowAction[] = []; @@ -505,33 +508,28 @@ export default function PluginListTable() { // Custom table actions const tableActions = useMemo(() => { - let actions = []; - - if (user.user?.is_superuser && pluginsEnabled) { - actions.push( - } - tooltip={t`Reload Plugins`} - onClick={reloadPlugins} - /> - ); - - actions.push( - } - tooltip={t`Install Plugin`} - onClick={() => { - setPluginPackage(''); - installPluginModal.open(); - }} - disabled={plugins_install_disabled || false} - /> - ); + if (!user.isSuperuser() || !pluginsEnabled) { + return []; } - return actions; + return [ + } + tooltip={t`Reload Plugins`} + onClick={reloadPlugins} + />, + } + tooltip={t`Install Plugin`} + onClick={() => { + setPluginPackage(''); + installPluginModal.open(); + }} + disabled={plugins_install_disabled || false} + /> + ]; }, [user, pluginsEnabled]); return ( diff --git a/src/frontend/tests/pages/pui_part.spec.ts b/src/frontend/tests/pages/pui_part.spec.ts index c642b1a790..9bc68816fc 100644 --- a/src/frontend/tests/pages/pui_part.spec.ts +++ b/src/frontend/tests/pages/pui_part.spec.ts @@ -69,7 +69,7 @@ test('PUI - Pages - Part - Pricing (Nothing, BOM)', async ({ page }) => { .getByRole('table') .getByText('Wood Screw') .click(); - await page.waitForURL('**/part/98/pricing'); + await page.waitForURL('**/part/98/**'); }); test('PUI - Pages - Part - Pricing (Supplier)', async ({ page }) => { @@ -121,7 +121,7 @@ test('PUI - Pages - Part - Pricing (Variant)', async ({ page }) => { let target = page.getByText('Green Chair').first(); await target.waitFor(); await target.click(); - await page.waitForURL('**/part/109/pricing'); + await page.waitForURL('**/part/109/**'); }); test('PUI - Pages - Part - Pricing (Internal)', async ({ page }) => { diff --git a/src/frontend/tests/pui_plugins.spec.ts b/src/frontend/tests/pui_plugins.spec.ts new file mode 100644 index 0000000000..e98a397cb2 --- /dev/null +++ b/src/frontend/tests/pui_plugins.spec.ts @@ -0,0 +1,104 @@ +import test, { Page, expect, request } from 'playwright/test'; + +import { baseUrl } from './defaults.js'; +import { doQuickLogin } from './login.js'; + +/* + * Set the value of a global setting in the database + */ +const setSettingState = async ({ + request, + setting, + value +}: { + request: any; + setting: string; + value: any; +}) => { + const url = `http://localhost:8000/api/settings/global/${setting}/`; + + const response = await request.patch(url, { + data: { + value: value + }, + headers: { + // Basic username: password authorization + Authorization: `Basic ${btoa('admin:inventree')}` + } + }); + + expect(await response.status()).toBe(200); +}; + +const setPluginState = async ({ + request, + plugin, + state +}: { + request: any; + plugin: string; + state: boolean; +}) => { + const url = `http://localhost:8000/api/plugins/${plugin}/activate/`; + + const response = await request.patch(url, { + data: { + active: state + }, + headers: { + // Basic username: password authorization + Authorization: `Basic ${btoa('admin:inventree')}` + } + }); + + expect(await response.status()).toBe(200); +}; + +test('Plugins - Panels', async ({ page, request }) => { + await doQuickLogin(page, 'admin', 'inventree'); + + // Ensure that UI plugins are enabled + await setSettingState({ + request, + setting: 'ENABLE_PLUGINS_INTERFACE', + value: true + }); + + // Ensure that the SampleUI plugin is enabled + await setPluginState({ + request, + plugin: 'sampleui', + state: true + }); + + // Navigate to the "part" page + await page.goto(`${baseUrl}/part/69/`); + + // Ensure basic part tab is available + await page.getByRole('tab', { name: 'Part Details' }).waitFor(); + + // Check out each of the plugin panels + await page.getByRole('tab', { name: 'Sample Panel' }).click(); + await page + .getByText('This is a sample panel which appears on every page') + .waitFor(); + + await page.getByRole('tab', { name: 'Broken Panel' }).click(); + await page.getByText('Error Loading Plugin').waitFor(); + + await page.getByRole('tab', { name: 'Dynamic Part Panel' }).click(); + await page + .getByText('This panel has been dynamically rendered by the plugin system') + .waitFor(); + await page.getByText('Instance ID: 69'); + + await page.getByRole('tab', { name: 'Part Panel', exact: true }).click(); + await page.getByText('This content has been rendered by a custom plugin'); + + // Disable the plugin, and ensure it is no longer visible + await setPluginState({ + request, + plugin: 'sampleui', + state: false + }); +}); From d75ef7c9c9e7a1a072332e9b2c3b58ae0be8c7bb Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 16 Sep 2024 11:07:24 +1000 Subject: [PATCH 03/22] Revert int.worker to worker (#8126) - Prevent existing docker compose installs from breaking --- .vscode/tasks.json | 2 +- contrib/container/dev-docker-compose.yml | 2 +- contrib/container/docker-compose.yml | 2 +- docs/docs/faq.md | 2 +- docs/docs/start/bare_dev.md | 2 +- docs/docs/start/docker_install.md | 2 +- tasks.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 335cc9a673..830889fb44 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -9,7 +9,7 @@ { "label": "worker", "type": "shell", - "command": "invoke int.worker", + "command": "invoke worker", "problemMatcher": [], }, { diff --git a/contrib/container/dev-docker-compose.yml b/contrib/container/dev-docker-compose.yml index 94e72abfc3..54636da3d5 100644 --- a/contrib/container/dev-docker-compose.yml +++ b/contrib/container/dev-docker-compose.yml @@ -56,7 +56,7 @@ services: inventree-dev-worker: image: inventree-dev-image build: *build_config - command: invoke int.worker + command: invoke worker depends_on: - inventree-dev-server volumes: diff --git a/contrib/container/docker-compose.yml b/contrib/container/docker-compose.yml index 93440934db..6a0b001f8b 100644 --- a/contrib/container/docker-compose.yml +++ b/contrib/container/docker-compose.yml @@ -83,7 +83,7 @@ services: # If you wish to specify a particular InvenTree version, do so here image: inventree/inventree:${INVENTREE_TAG:-stable} container_name: inventree-worker - command: invoke int.worker + command: invoke worker depends_on: - inventree-server env_file: diff --git a/docs/docs/faq.md b/docs/docs/faq.md index 17cfdf84fe..d8b51ecac6 100644 --- a/docs/docs/faq.md +++ b/docs/docs/faq.md @@ -107,7 +107,7 @@ The background worker process must be started separately to the web-server appli From the top-level source directory, run the following command from a separate terminal, while the server is already running: ``` -invoke int.worker +invoke worker ``` !!! info "Supervisor" diff --git a/docs/docs/start/bare_dev.md b/docs/docs/start/bare_dev.md index 1e02469c63..51324570b9 100644 --- a/docs/docs/start/bare_dev.md +++ b/docs/docs/start/bare_dev.md @@ -52,7 +52,7 @@ source ./env/bin/activate ### Start Background Worker ``` -(env) invoke int.worker +(env) invoke worker ``` This will start the background process manager in the current shell. diff --git a/docs/docs/start/docker_install.md b/docs/docs/start/docker_install.md index 489e904898..1f9d11942a 100644 --- a/docs/docs/start/docker_install.md +++ b/docs/docs/start/docker_install.md @@ -247,7 +247,7 @@ index 8adee63..dc3993c 100644 - image: inventree/inventree:${INVENTREE_TAG:-stable} + image: inventree/inventree:${INVENTREE_TAG:-stable}-custom + pull_policy: never - command: invoke int.worker + command: invoke worker depends_on: - inventree-server ``` diff --git a/tasks.py b/tasks.py index 0e69b733be..9bd434f01b 100644 --- a/tasks.py +++ b/tasks.py @@ -1473,7 +1473,6 @@ internal = Collection( rebuild_thumbnails, showmigrations, translate_stats, - worker, ) ns = Collection( @@ -1491,6 +1490,7 @@ ns = Collection( update, version, wait, + worker, ) ns.add_collection(development, 'dev') From 280a97816aff3f00f8651a2873e942fbc4317df5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 23:28:44 +1000 Subject: [PATCH 04/22] New Crowdin translations by GitHub Action (#8108) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../InvenTree/locale/ar/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/bg/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/cs/LC_MESSAGES/django.po | 996 ++++---- .../InvenTree/locale/da/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/de/LC_MESSAGES/django.po | 996 ++++---- .../InvenTree/locale/el/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/en/LC_MESSAGES/django.po | 996 ++++---- .../InvenTree/locale/es/LC_MESSAGES/django.po | 1002 ++++---- .../locale/es_MX/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/et/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/fa/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/fi/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/fr/LC_MESSAGES/django.po | 996 ++++---- .../InvenTree/locale/he/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/hi/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/hu/LC_MESSAGES/django.po | 996 ++++---- .../InvenTree/locale/id/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/it/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/ja/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/ko/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/lv/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/nl/LC_MESSAGES/django.po | 996 ++++---- .../InvenTree/locale/no/LC_MESSAGES/django.po | 996 ++++---- .../InvenTree/locale/pl/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/pt/LC_MESSAGES/django.po | 996 ++++---- .../locale/pt_BR/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/ro/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/ru/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/sk/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/sl/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/sr/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/sv/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/th/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/tr/LC_MESSAGES/django.po | 1214 +++++----- .../InvenTree/locale/uk/LC_MESSAGES/django.po | 998 ++++---- .../InvenTree/locale/vi/LC_MESSAGES/django.po | 996 ++++---- .../locale/zh_Hans/LC_MESSAGES/django.po | 996 ++++---- .../locale/zh_Hant/LC_MESSAGES/django.po | 998 ++++---- src/frontend/src/locales/ar/messages.po | 1617 +++++++------ src/frontend/src/locales/bg/messages.po | 1617 +++++++------ src/frontend/src/locales/cs/messages.po | 1623 +++++++------ src/frontend/src/locales/da/messages.po | 1617 +++++++------ src/frontend/src/locales/de/messages.po | 1633 +++++++------ src/frontend/src/locales/el/messages.po | 1617 +++++++------ src/frontend/src/locales/en/messages.po | 1633 +++++++------ src/frontend/src/locales/es/messages.po | 1635 +++++++------ src/frontend/src/locales/es_MX/messages.po | 1617 +++++++------ src/frontend/src/locales/et/messages.po | 1617 +++++++------ src/frontend/src/locales/fa/messages.po | 1617 +++++++------ src/frontend/src/locales/fi/messages.po | 1617 +++++++------ src/frontend/src/locales/fr/messages.po | 1633 +++++++------ src/frontend/src/locales/he/messages.po | 1617 +++++++------ src/frontend/src/locales/hi/messages.po | 1617 +++++++------ src/frontend/src/locales/hu/messages.po | 1633 +++++++------ src/frontend/src/locales/id/messages.po | 1617 +++++++------ src/frontend/src/locales/it/messages.po | 2135 +++++++++-------- src/frontend/src/locales/ja/messages.po | 1617 +++++++------ src/frontend/src/locales/ko/messages.po | 1617 +++++++------ src/frontend/src/locales/lv/messages.po | 1617 +++++++------ src/frontend/src/locales/nl/messages.po | 1621 +++++++------ src/frontend/src/locales/no/messages.po | 1633 +++++++------ src/frontend/src/locales/pl/messages.po | 1629 +++++++------ src/frontend/src/locales/pt/messages.po | 1635 +++++++------ src/frontend/src/locales/pt_BR/messages.po | 1635 +++++++------ src/frontend/src/locales/ro/messages.po | 1617 +++++++------ src/frontend/src/locales/ru/messages.po | 1617 +++++++------ src/frontend/src/locales/sk/messages.po | 1617 +++++++------ src/frontend/src/locales/sl/messages.po | 1617 +++++++------ src/frontend/src/locales/sr/messages.po | 1617 +++++++------ src/frontend/src/locales/sv/messages.po | 1635 +++++++------ src/frontend/src/locales/th/messages.po | 1617 +++++++------ src/frontend/src/locales/tr/messages.po | 1761 +++++++------- src/frontend/src/locales/uk/messages.po | 1617 +++++++------ src/frontend/src/locales/vi/messages.po | 1623 +++++++------ src/frontend/src/locales/zh_Hans/messages.po | 1635 +++++++------ src/frontend/src/locales/zh_Hant/messages.po | 1617 +++++++------ 76 files changed, 53160 insertions(+), 47270 deletions(-) diff --git a/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po index dd18d3fe69..1dda205ffa 100644 --- a/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ar/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -65,9 +65,9 @@ msgstr "أدخل التاريخ" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po index dec5cbfaeb..e2db3b7d14 100644 --- a/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/bg/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -65,9 +65,9 @@ msgstr "Въведи дата" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Китайски (традиционен)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Потребител" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Цялостна наличност" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po index 2f0ee4e7b9..9b093adef8 100644 --- a/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/cs/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -65,9 +65,9 @@ msgstr "Zadejte datum" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Čínština (tradiční)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Přihlásit se do aplikace" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Duplicitní názvy nemohou existovat pod stejným nadřazeným názvem" msgid "Invalid choice" msgstr "Neplatný výběr" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Název" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Chyba serveru" msgid "An error has been logged by the server." msgstr "Server zaznamenal chybu." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Musí být platné číslo" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Vyberte měnu z dostupných možností" msgid "Username" msgstr "Uživatelské jméno" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Křestní jméno" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Křestní jméno uživatele" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Příjmení" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Příjmení uživatele" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Emailová adresa uživatele" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Personál" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Má tento uživatel oprávnění personálu" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Super-uživatel" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Je tento uživatel superuživatel" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Je tento uživatel superuživatel" msgid "Active" msgstr "Aktivní" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Je tento uživatelský účet aktivní" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Nemáte oprávnění měnit tuto uživatelskou roli." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Pouze superuživatelé mohou vytvářet nové uživatele" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Váš účet byl vytvořen." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Pro přihlášení použijte funkci obnovení hesla" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Vítejte v InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Neplatná hodnota" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Datový soubor" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Vyberte datový soubor k nahrání" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Nepodporovaný typ souboru" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Soubor je příliš velký" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "V souboru nebyly nalezeny žádné sloupce" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "V souboru nebyly nalezeny žádné řádky s daty" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Nebyly zadány žádné řádky s daty" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Nebyly zadány žádné sloupce s daty" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Chybí povinný sloupec: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplicitní sloupec: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Vzdálený obraz" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL souboru vzdáleného obrázku" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Stahování obrázků ze vzdálené URL není povoleno" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Sestavení musí být zrušeno před odstraněním" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Sestavení musí být zrušeno před odstraněním" msgid "Consumable" msgstr "Spotřební materiál" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Přiděleno" msgid "Available" msgstr "Dostupné" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Dostupné" msgid "Build Order" msgstr "Vytvořit objednávku" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Referenční číslo objednávky" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Příkaz sestavení pro který je toto sestavení přiděleno" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Uživatel nebo skupina odpovědná za tento příkaz k sestavení" msgid "External Link" msgstr "Externí odkaz" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Odkaz na externí URL" @@ -1110,7 +1110,7 @@ msgstr "Příkaz k sestavení {build} byl dokončen" msgid "A build order has been completed" msgstr "Příkaz k sestavení byl dokončen" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Nebyl specifikováno žádný výstup sestavení" @@ -1122,37 +1122,37 @@ msgstr "Výstup sestavení je již dokončen" msgid "Build output does not match Build Order" msgstr "Výstup sestavení neodpovídá příkazu sestavení" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Množství musí být vyšší než nula" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Množství nemůže být větší než výstupní množství" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Výstup sestavy {serial} neprošel všemi požadavky" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "Vytvořit položku řádku objednávky" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Vytvořit objekt" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Vytvořit objekt" msgid "Quantity" msgstr "Množství" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Vyžadované množství pro objednávku" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Položka sestavení musí specifikovat výstup sestavení, protože hlavní díl je označen jako sledovatelný" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Zabrané množství ({q}) nesmí překročit dostupné skladové množství ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Skladová položka je nadměrně zabrána" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Zabrané množství musí být větší než nula" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Množství musí být 1 pro zřetězený sklad" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Vybraná položka zásob neodpovídá řádku BOM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Vybraná položka zásob neodpovídá řádku BOM" msgid "Stock Item" msgstr "Skladové položky" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Zdrojová skladová položka" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Skladové množství pro sestavení" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Instalovat do" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Cílová skladová položka" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Název dílu" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Balení" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "ID dílu" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "IPN dílu" @@ -1667,13 +1667,13 @@ msgstr "Sledovatelné" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "BOM Položka" @@ -2145,19 +2145,19 @@ msgstr "Neúplné výstupy" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "Je odkaz" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "Je soubor" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "Uživatel nemá oprávnění k odstranění této přílohy" @@ -2350,7 +2350,7 @@ msgstr "Jak často aktualizovat směnné kurzy (pro vypnutí nastavte na nulu)" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "dny" @@ -2578,7 +2578,7 @@ msgstr "Kopírovat šablony parametrů kategorie" msgid "Copy category parameter templates when creating a part" msgstr "Kopírování šablon parametrů kategorie při vytváření dílu" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Povolit pluginům reagovat na interní události" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Povolit kódy projektů" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Povolit kódy projektů pro sledování projektů" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Funkce inventury" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Povolit funkci inventury pro evidenci stavu zásob a výpočet hodnoty zásob" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Vyloučit externí umístění" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Vyloučit skladové položky na externích místech z výpočtů inventury" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Perioda automatické inventury" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Počet dní mezi automatickým záznamem inventury (pro vypnutí nastavte nulu)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Interval mazání reportů" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Reporty o inventuře se po určitém počtu dní vymažou" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Zobrazit celá jména uživatelů" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Zobrazit plná jména uživatelů namísto uživatelských jmen" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "Povolit data zkušební stanice" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "Povolit sběr dat ze zkušební stanice pro výsledky testů" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Klíč nastavení (musí být unikátní - rozlišuje malá a velká písmena" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Skrýt neaktivní díly" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Skrýt neaktivní díly ve výsledcích zobrazených na domovské stránce" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Zobrazit odebírané díly" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Zobrazit odebírané díly na domovské stránce" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Zobrazit odebírané kategorie" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Zobrazit kategorie odebíraných dílů na hlavní stránce" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Zobrazit nejnovější díly" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Zobrazit nejnovější díly na domovské stránce" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "Zobrazit neplatné kusovníky (BOMy)" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Zobrazit kusovníky (BOMy), které čekají na ověření, na domovské stránce" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Zobrazit nedávné změny zásob" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Zobrazit nedávno změněné skladové položky na domovské stránce" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Zobrazit nízký stav zásob" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Zobrazit na domovské stránce položky s nízkou skladovou zásobou" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Zobrazit vyčerpané zásoby" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Zobrazit vyčerpané položky na domovské stránce" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Zobrazit potřebné zásoby" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Zobrazit skladové položky potřebné pro sestavy na domovské stránce" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Zobrazit expirované zásoby" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Zobrazit expirované skladové položky na domovské stránce" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Zobrazit neaktuální zásoby" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Zobrazit neaktuální skladové položky na domovské stránce" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Zobrazit nevyřízené sestavy" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Zobrazit nevyřízené sestavy na domovské stránce" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Zobrazit sestavy po splatnosti" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Zobrazit sestavy po splatnosti na domovské stránce" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Zobrazit nevyřízené PO" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Zobrazit nevyřízené PO na domovské stránce" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Zobrazit PO po splatnosti" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Zobrazit PO po splatnosti na domovské stránce" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Zobrazit nevyřízené SO" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Zobrazit nevyřízené SO na domovské stránce" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Zobrazit SO po splatnosti" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Zobrazit SO po splatnosti na domovské stránce" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Zobrazit čekající zásilky SO" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Zobrazit čekající zásilky SO na domovské stránce" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Zobrazit novinky" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Zobrazit novinky na domovské stránce" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Zobrazení štítků na řádku" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Zobrazit štítky PDF v prohlížeči namísto stahování jako soubor" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Výchozí tiskárna štítků" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Konfigurovat tiskárnu štítků, která má být vybrána jako výchozí" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Zobrazení reportů na řádku" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Zobrazit reporty PDF v prohlížeči namísto stahování jako soubor" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Hledat díly" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Zobrazit díly v náhledu hledání" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Hledat díly dodavatele" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Zobrazit díly dodavatele v náhledu hledání" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Vyhledávání dílů výrobce" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Zobrazit díly výrobce v náhledu hledání" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Skrýt neaktivní díly" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Vyloučené neaktivní části z okna náhledu vyhledávání" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Hledat kategorie" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Zobrazit kategorie dílů v náhledu hledání" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Hledat zásoby" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Zobrazit skladové položky v náhledu hledání" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Skrýt nedostupné skladové položky" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Vyloučit skladové položky, které nejsou dostupné z okna náhledu hledání" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Hledat umístění" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Zobrazit skladová umístění v náhledu hledání" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Hledat společnosti" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Zobrazit společnosti v náhledu hledání" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Hledat objednávky sestav" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Zobrazit objednávky sestav v náhledu hledání" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Hledat nákupní objednávky" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Zobrazit nákupní objednávky v náhledu hledání" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Vyloučit neaktivní nákupní objednávky" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Vyloučit neaktivní nákupní objednávky z okna náhledu vyhledávání" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Hledat prodejní objednávky" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Zobrazit prodejní objednávky v náhledu hledání" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Vyloučit neaktivní prodejní objednávky" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Vyloučit neaktivní prodejní objednávky z okna náhledu vyhledávání" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Vyhledávání vrácených objednávek" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "Zobrazit vrácené objednávky v okně náhledu vyhledávání" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "Vyloučit neaktivní vrácené objednávky" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "Vyloučit neaktivní vrácené objednávky z okna náhledu vyhledávání" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Náhled výsledků vyhledávání" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Počet výsledků, které se mají zobrazit v každé části okna náhledu vyhledávání" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Regex hledání" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Povolit regulární výrazy ve vyhledávacích dotazech" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Vyhledávání celého slova" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "Vyhledávací dotazy vracejí výsledky pro shody celých slov" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Zobrazit množství ve formulářích" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Zobrazit dostupné množství dílů v některých formulářích" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Klávesa Escape zavře formuláře" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Zavřít modální formuláře pomocí klávesy escape" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Pevná navigační lišta" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "Pozice navigační lišty je pevně nastavena na horní okraj obrazovky" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Formát data" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Preferovaný formát pro zobrazení datumů" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Plánování dílů" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Zobrazit informace o plánování dílů" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventura dílu" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Zobrazit informace o skladových zásobách dílů (pokud je povolena funkce inventury)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Délka textu v tabulce" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "Maximální délka textu v zobrazeních tabulek" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Přijímat zprávy o chybách" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "Dostávat oznámení o systémových chybách" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "Poslední použité tiskárny" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "Uložte poslední použité tiskárny pro uživatele" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Uživatel" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Množství cenové slevy" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "Množství cenové slevy" msgid "Price" msgstr "Cena" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Jednotková cena při stanoveném množství" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Koncový bod" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Koncový bod, ve kterém je tento webhook přijímán" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Název tohoto webhooku" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Je tento webhook aktivní" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "Token" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Token pro přístup" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Tajný klíč" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Sdílený tajný klíč pro HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "ID zprávy" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Unikátní identifikátor pro tuto zprávu" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Hostitel" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Hostitel, od kterého byla tato zpráva přijata" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Záhlaví" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Záhlaví této zprávy" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Tělo" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Tělo zprávy" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Koncový bod, na kterém byla zpráva přijata" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Pracoval na" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "Byla práce na této zprávě dokončena?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "ID" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Název" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Název" msgid "Link" msgstr "Odkaz" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Zveřejněno" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autor" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Souhrn" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Přečteno" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Byla tato novinka přečtena?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "Byla tato novinka přečtena?" msgid "Image" msgstr "Obrazek" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Soubor obrázku" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "Cílový typ modelu pro tento obrázek" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "Cílové ID modelu pro tento obrázek" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "Název jednotky musí být platný identifikátor" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Název jednotky" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbol" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Volitelný symbol jednotky" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definice" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Definice jednotky" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Příloha" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Chybějící soubor" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Chybějící externí odkaz" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Vyberte soubor k přiložení" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentář" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "Komentář přílohy" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "Datum nahrání" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "Datum, kdy byl soubor nahrán" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "Velikost souboru" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "Velikost souboru v bytech" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "Uveden neplatný typ modelu pro přílohu" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Čas uzamčení" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Jméno úkolu" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Funkce" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Název funkce" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Argumenty" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Argumenty úlohy" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Argumenty klíčových slov" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Argumenty klíčových slov úlohy" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Název souboru" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "Typ modelu" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "Uživatel nemá oprávnění k vytváření nebo úpravám příloh pro tento model" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Název parametru" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Hodnota parametru" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Popis dílu dodavatele" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Popis dílu dodavatele" msgid "Note" msgstr "Poznámka" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "základní cena" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimální poplatek (např. poplatek za skladování)" @@ -4618,7 +4626,7 @@ msgstr "Počet kusů v balení" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Celkové množství dodávané v jednom balení. Pro jednotlivé položky ponechte prázdné." -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "více" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Kategorie dílu" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Název dílu" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "ID dílu nebo název dílu" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Jedinečná hodnota ID dílu" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Hodnota IPN dílu" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Vyberte nadřazený díl" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po index 7bce0c97da..9f5bc21dcc 100644 --- a/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/da/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -65,9 +65,9 @@ msgstr "Angiv dato" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Kinesisk (traditionelt)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "Ugyldigt valg" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Navn" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Serverfejl" msgid "An error has been logged by the server." msgstr "En fejl blev logget af serveren." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Skal være et gyldigt tal" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Vælg valuta fra tilgængelige muligheder" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Du har ikke tilladelse til at ændre denne brugerrolle." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Kun superbrugere kan oprette nye brugere" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Ugyldig værdi" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Datafil" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Vælg datafilen til upload" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Filtype ikke understøttet" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Filen er for stor" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Ingen kolonner fundet i fil" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Ingen datarækker fundet i fil" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Ingen data-rækker angivet" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Ingen data-kolonner angivet" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Mangler påkrævet kolonne: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplikeret kolonne: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Eksternt billede" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL til ekstern billedfil" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Download af billeder fra ekstern URL er ikke aktiveret" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Produktion skal anulleres, før den kan slettes" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Produktion skal anulleres, før den kan slettes" msgid "Consumable" msgstr "Forbrugsvare" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Allokeret" msgid "Available" msgstr "Tilgængelig" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Tilgængelig" msgid "Build Order" msgstr "Produktionsordre" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Produktionsordre reference" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Produktionsordre som er tildelt denne produktion" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Bruger eller gruppe ansvarlig for denne byggeordre" msgid "External Link" msgstr "Ekstern link" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link til ekstern URL" @@ -1110,7 +1110,7 @@ msgstr "Bygningsordre {build} er fuldført" msgid "A build order has been completed" msgstr "En byggeordre er fuldført" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Bruger" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Vedhæftning" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Manglende fil" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Manglende eksternt link" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Vælg fil, der skal vedhæftes" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Filnavn" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po index 529d723b25..03086912f8 100644 --- a/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/de/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -65,9 +65,9 @@ msgstr "Datum eingeben" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Chinesisch (Traditionell)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] In App einloggen" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Doppelte Namen können nicht unter dem selben Elternteil existieren" msgid "Invalid choice" msgstr "Ungültige Auswahl" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Name" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Serverfehler" msgid "An error has been logged by the server." msgstr "Ein Fehler wurde vom Server protokolliert." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Muss eine gültige Nummer sein" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Währung aus verfügbaren Optionen auswählen" msgid "Username" msgstr "Benutzername" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Vorname" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Vorname des Benutzers" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Nachname" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Nachname des Benutzers" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "E-Mailadresse des Benutzers" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Mitarbeiter" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Hat der Benutzer die Mitarbeiter Berechtigung" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Administrator" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Ist dieser Benutzer ein Administrator" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Ist dieser Benutzer ein Administrator" msgid "Active" msgstr "Aktiv" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Ist dieses Benutzerkonto aktiv" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Sie haben keine Berechtigung, diese Benutzerrolle zu ändern." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Nur Superuser können neue Benutzer erstellen" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Ihr Konto wurde erstellt." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Bitte benutzen Sie die Passwort-zurücksetzen-Funktion, um sich anzumelden" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Willkommen bei InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Ungültiger Wert" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Datendatei" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Neue Datei zum Hochladen auswählen" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Nicht unterstütztes Dateiformat" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Datei ist zu groß" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Keine Spalten in der Datei gefunden" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Keine Datensätze in der Datei gefunden" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Keine Zeilen ausgewählt" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Keine Spalten angegeben" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Erforderliche Spalte '{name}' fehlt" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Doppelte Spalte: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Grafiken aus externen Quellen" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL der Remote-Bilddatei" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Das Herunterladen von Bildern von Remote-URLs ist nicht aktiviert" @@ -759,7 +759,7 @@ msgstr "Zugewiesen zu" msgid "Build must be cancelled before it can be deleted" msgstr "Bauauftrag muss abgebrochen werden, bevor er gelöscht werden kann" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Bauauftrag muss abgebrochen werden, bevor er gelöscht werden kann" msgid "Consumable" msgstr "Verbrauchsmaterial" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Zugeordnet" msgid "Available" msgstr "Verfügbar" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Verfügbar" msgid "Build Order" msgstr "Bauauftrag" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Bauauftragsreferenz" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Bauauftrag, zu dem dieser Bauauftrag zugwiesen ist" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Benutzer oder Gruppe verantwortlich für diesen Bauauftrag" msgid "External Link" msgstr "Externer Link" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link zu einer externen URL" @@ -1110,7 +1110,7 @@ msgstr "Bauauftrag {build} wurde fertiggestellt" msgid "A build order has been completed" msgstr "Ein Bauauftrag wurde fertiggestellt" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "kein Endprodukt angegeben" @@ -1122,37 +1122,37 @@ msgstr "Endprodukt bereits hergstellt" msgid "Build output does not match Build Order" msgstr "Endprodukt stimmt nicht mit dem Bauauftrag überein" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Anzahl muss größer Null sein" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Menge kann nicht größer als die Ausgangsmenge sein" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Build Ausgabe {serial} hat nicht alle erforderlichen Tests bestanden" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Objekt bauen" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Objekt bauen" msgid "Quantity" msgstr "Anzahl" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Erforderliche Menge für Auftrag" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Bauauftragsposition muss ein Endprodukt festlegen, da der übergeordnete Teil verfolgbar ist" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Zugewiesene Menge ({q}) darf nicht verfügbare Menge ({a}) übersteigen" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "BestandObjekt ist zu oft zugewiesen" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Reserviermenge muss größer null sein" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Anzahl muss 1 für Objekte mit Seriennummer sein" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Ausgewählter Lagerbestand stimmt nicht mit BOM-Linie überein" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Ausgewählter Lagerbestand stimmt nicht mit BOM-Linie überein" msgid "Stock Item" msgstr "Lagerartikel" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Quell-Lagerartikel" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Anzahl an Lagerartikel dem Bauauftrag zuweisen" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Installiere in" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Ziel-Lagerartikel" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Name des Teils" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Verpackungen" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Teil-ID" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "Teil IPN" @@ -1667,13 +1667,13 @@ msgstr "Nachverfolgbar" msgid "Inherited" msgstr "Vererbt" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Varianten zulassen" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Stücklisten-Position" @@ -2145,19 +2145,19 @@ msgstr "Unfertige Endprodukte" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "Link" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "Datei" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "Benutzer hat keine Berechtigung zum Löschen des Anhangs" @@ -2350,7 +2350,7 @@ msgstr "Wie oft Wechselkurse aktualisiert werden sollen (auf Null zum Deaktivier #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "Tage" @@ -2578,7 +2578,7 @@ msgstr "Kategorie-Parametervorlage kopieren" msgid "Copy category parameter templates when creating a part" msgstr "Kategorie-Parameter Vorlagen kopieren wenn ein Teil angelegt wird" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Plugins ermöglichen auf interne Ereignisse zu reagieren" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Projektcodes aktivieren" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Aktiviere Projektcodes für die Verfolgung von Projekten" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Inventurfunktionen" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Inventur-Funktionen zur Aufzeichnung von Lagerbeständen und zur Berechnung des Lagerwerts aktivieren" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Externe Standorte ausschließen" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Lagerartikeln in externen Standorten in der Berechnungen zur Bestandsaufnahme ausschließen" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Automatische Inventur-Periode" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Anzahl der Tage zwischen automatischen Bestandsaufnahmen (zum Deaktivieren auf Null setzen)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Löschintervall für Berichte" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Inventurberichte werden nach der angegebenen Anzahl von Tagen gelöscht" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Vollständige Namen von Benutzern anzeigen" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Vollständigen Namen von Benutzern anstatt Benutzername anzeigen" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "Teststation-Daten aktivieren" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "Teststation-Datenerfassung für Testergebnisse aktivieren" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Einstellungs-Schlüssel (muss einzigartig sein, Groß-/ Kleinschreibung wird nicht beachtet)" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Inaktive Teile ausblenden" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ausblenden inaktiver Teile in den auf der Startseite angezeigten Ergebnissen" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Abonnierte Teile anzeigen" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Zeige abonnierte Teile auf der Startseite" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Abonnierte Kategorien anzeigen" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Zeige abonnierte Teilkategorien auf der Startseite" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Neueste Teile anzeigen" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Zeige neueste Teile auf der Startseite" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "Zeige ungültige Stücklisten" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Zeige Stücklisten, die noch nicht validiert sind, auf der Startseite" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Neueste Bestandänderungen anzeigen" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Zeige zuletzt geänderte Lagerbestände auf der Startseite" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Niedrigen Bestand anzeigen" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Zeige geringen Bestand auf der Startseite" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Lerren Bestand anzeigen" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Zeige aufgebrauchte Lagerartikel auf der Startseite" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Benötigten Bestand anzeigen" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Zeige Bestand für Bauaufträge auf der Startseite" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Abgelaufenen Bestand anzeigen" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Zeige abgelaufene Lagerbestände auf der Startseite" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Alten Bestand anzeigen" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Zeige überfällige Lagerartikel auf der Startseite" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Ausstehende Bauaufträge anzeigen" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Zeige ausstehende Bauaufträge auf der Startseite" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Zeige überfällige Bauaufträge" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Zeige überfällige Bauaufträge auf der Startseite" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Ausstehende POs anzeigen" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Zeige ausstehende POs auf der Startseite" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Überfällige POs anzeigen" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Zeige überfällige POs auf der Startseite" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Ausstehende SOs anzeigen" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Zeige ausstehende SOs auf der Startseite" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Überfällige SOs anzeigen" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Zeige überfällige SOs auf der Startseite" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Ausstehende Versandaufträge anzeigen" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Ausstehende Versandaufträge auf der Startseite anzeigen" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Zeige Neuigkeiten" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Neuigkeiten auf der Startseite anzeigen" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Label inline anzeigen" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "PDF-Labels im Browser anzeigen, anstatt als Datei herunterzuladen" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Standard-Etikettendrucker" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Einen standardmäßig ausgewählten Etikettendrucker konfigurieren" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Berichte inline anzeigen" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "PDF-Berichte im Browser anzeigen, anstatt als Datei herunterzuladen" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Teile suchen" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Teile in der Suchvorschau anzeigen" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Zulieferteile durchsuchen" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Zuliefererteile in der Suchvorschau anzeigen" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Herstellerteile durchsuchen" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Herstellerteile in der Suchvorschau anzeigen" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Inaktive Teile ausblenden" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Inaktive Teile in der Suchvorschau ausblenden" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Kategorien durchsuchen" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Teilekategorien in der Suchvorschau anzeigen" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Bestand durchsuchen" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Lagerartikel in Suchvorschau anzeigen" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Nicht verfügbare Artikel ausblenden" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Nicht verfügbare Lagerartikel aus der Suchvorschau ausschließen" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Lagerorte durchsuchen" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Lagerorte in Suchvorschau anzeigen" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Firmen durchsuchen" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Firmen in der Suchvorschau anzeigen" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Bauaufträge durchsuchen" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Bauaufträge in der Suchvorschau anzeigen" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Bestellungen durchsuchen" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Bestellungen in der Suchvorschau anzeigen" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktive Bestellungen ausblenden" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inaktive Bestellungen in der Suchvorschau ausblenden" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Aufträge durchsuchen" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Aufträge in der Suchvorschau anzeigen" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Inaktive Aufträge ausblenden" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Inaktive Aufträge in der Suchvorschau ausblenden" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Suche nach Rücksendungen" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "Rücksendungen in der Suchvorschau anzeigen" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "Inaktive Rücksendungen ausblenden" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "Inaktive Rücksendungen in der Suchvorschau ausblenden" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Anzahl Suchergebnisse" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Anzahl der Ergebnisse, die in der Vorschau pro Sektion angezeigt werden sollen" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Regex Suche" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Reguläre Ausdrücke in Suchabfragen aktivieren" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Ganzes Wort suchen" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "Suchabfragen liefern Ergebnisse für ganze Wortkombinationen" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "zeige Bestand in Eingabemasken" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Zeige den verfügbaren Bestand in einigen Eingabemasken" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Esc-Taste schließt Formulare" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Benutze die Esc-Taste, um Formulare zu schließen" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Fixierter Navigationsleiste" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "Position der Navigationsleiste am oberen Bildschirmrand fixieren" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Datumsformat" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Bevorzugtes Format für die Anzeige von Daten" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Teilzeitplanung" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Zeige Zeitplanung für Teile" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventur" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Zeigt Inventur-Informationen an (falls die Inventurfunktion aktiviert ist)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Zeichenkettenlänge in Tabellen" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "Maximale Länge für Zeichenketten, die in Tabellenansichten angezeigt werden" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Fehlerberichte empfangen" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "Benachrichtigungen bei Systemfehlern erhalten" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "Zuletzt verwendete Druckmaschinen" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "Die zuletzt benutzten Druckmaschinen für einen Benutzer speichern" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Benutzer" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Preisstaffelungs Anzahl" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "Preisstaffelungs Anzahl" msgid "Price" msgstr "Preis" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Stückpreis für die angegebene Anzahl" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Endpunkt" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Endpunkt, an dem dieser Webhook empfangen wird" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Name für diesen Webhook" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Ist dieser Webhook aktiv" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "Token" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Token für Zugang" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Geheimnis" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Shared Secret für HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "Nachrichten-ID" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Eindeutige Kennung für diese Nachricht" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Host" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Host von dem diese Nachricht empfangen wurde" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Kopfzeile" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Header dieser Nachricht" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Body" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Body dieser Nachricht" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Endpunkt, über den diese Nachricht empfangen wurde" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Bearbeitet" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "Wurde die Arbeit an dieser Nachricht abgeschlossen?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "ID" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titel" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Titel" msgid "Link" msgstr "Link" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Veröffentlicht" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autor" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Zusammenfassung" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Gelesen" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Wurde diese Nachricht gelesen?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "Wurde diese Nachricht gelesen?" msgid "Image" msgstr "Bild" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Bilddatei" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "Einheitsname muss eine gültige Kennung sein" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Einheitsname" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbol" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Optionales Einheitssymbol" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definition" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Einheitsdefinition" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Anhang" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Fehlende Datei" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Fehlender externer Link" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Datei zum Anhängen auswählen" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "Upload Datum" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "Datum der hochgeladenen Datei" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "Dateigröße" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "Dateigröße in Bytes" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "Ungültiger Modelltyp für Anhang angegeben" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Schlüssel" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "Artikel wurden aus einer Rücksendung erhalten" msgid "Error raised by plugin" msgstr "Fehler in Plugin aufgetreten" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Wird ausgeführt" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Anstehende Aufgaben" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Geplante Aufgaben" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Fehlgeschlagene Aufgaben" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "Aufgabe-ID" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "Eindeutige Aufgaben-ID" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Sperren" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Sperrzeit" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Aufgabenname" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Funktion" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Funktionsname" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Parameter" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Aufgaben-Parameter" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Schlüsselwort Parameter" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Schlüsselwort Parameter für Aufgaben" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Dateiname" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "Modelltyp" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "Benutzer hat keine Berechtigung, Anhänge für dieses Modell zu erstellen oder zu bearbeiten" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Parametername" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Parameterwert" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Zuliefererbeschreibung des Teils" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Zuliefererbeschreibung des Teils" msgid "Note" msgstr "Notiz" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "Basiskosten" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Mindestpreis" @@ -4618,7 +4626,7 @@ msgstr "Packmenge" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Gesamtmenge, die in einer einzelnen Packung geliefert wird. Für Einzelstücke leer lassen." -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "Vielfache" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Wert" @@ -6557,12 +6565,12 @@ msgstr "Benutzt in" msgid "Building" msgstr "Im Bau" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Minimale Kosten" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Maximale Kosten" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Gesamtbestand" msgid "Input quantity for price calculation" msgstr "Menge für die Preisberechnung" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Teil-Kategorie" @@ -6867,7 +6875,7 @@ msgstr "Teil mit diesem Namen, IPN und Revision existiert bereits." msgid "Parts cannot be assigned to structural part categories!" msgstr "Strukturellen Teilekategorien können keine Teile zugewiesen werden!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Name des Teils" @@ -7006,159 +7014,159 @@ msgstr "Verantwortlicher Besitzer für dieses Teil" msgid "Last Stocktake" msgstr "Letzte Inventur" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Mehrere verkaufen" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "Währung für die Berechnung der Preise im Cache" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Minimale Stücklisten Kosten" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "Minimale Kosten für Teile" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Maximale Stücklisten Kosten" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "Maximale Kosten für Teile" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "Minimale Einkaufskosten" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "Minimale historische Kaufkosten" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "Maximale Einkaufskosten" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "Maximale historische Einkaufskosten" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "Minimaler interner Preis" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "Minimale Kosten basierend auf den internen Staffelpreisen" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "Maximaler interner Preis" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "Maximale Kosten basierend auf internen Preisstaffeln" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "Minimaler Lieferantenpreis" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "Mindestpreis für Teil von externen Lieferanten" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "Maximaler Lieferantenpreis" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "Maximaler Preis für Teil von externen Lieferanten" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "Minimale Variantenkosten" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "Berechnete minimale Kosten für Variantenteile" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "Maximale Variantenkosten" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "Berechnete maximale Kosten für Variantenteile" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "Mindestkosten überschreiben" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "Maximale Kosten überschreiben" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "Berechnete Mindestkosten" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "Berechnete Maximalkosten" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "Mindestverkaufspreis" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "Mindestverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "Maximaler Verkaufspreis" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "Maximalverkaufspreis basierend auf Staffelpreisen" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Mindestverkaufskosten" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "Minimaler historischer Verkaufspreis" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "Maximale Verkaufskosten" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "Maximaler historischer Verkaufspreis" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "Teil für die Inventur" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Stückzahl" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "Anzahl einzelner Bestandseinträge zum Zeitpunkt der Inventur" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "Insgesamt verfügbarer Lagerbestand zum Zeitpunkt der Inventur" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "Insgesamt verfügbarer Lagerbestand zum Zeitpunkt der Inventur" msgid "Date" msgstr "Datum" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "Datum der Inventur" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Zusätzliche Notizen" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "Benutzer, der diese Inventur durchgeführt hat" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Mindestbestandswert" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Geschätzter Mindestwert des vorhandenen Bestands" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "Maximaler Bestandswert" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "Geschätzter Maximalwert des vorhandenen Bestands" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Bericht" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "Inventur-Berichtsdatei (intern generiert)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Anzahl der Teile" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "Anzahl der Teile, die von der Inventur abgedeckt werden" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "Benutzer, der diesen Inventurbericht angefordert hat" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Ungültiger Vorlagenname - es muss mindestens ein alphanumerisches Zeichen enthalten sein" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "Auswahl muss einzigartig sein" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "Testvorlage mit demselben Schlüssel existiert bereits für Teil" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Test-Name" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Namen für diesen Test eingeben" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "Testschlüssel" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "Vereinfachter Schlüssel zum Test" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Test-Beschreibung" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Beschreibung für diesen Test eingeben" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Aktiviert" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "Ist dieser Test aktiviert?" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Benötigt" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "Muss dieser Test erfolgreich sein?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Erfordert Wert" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "Muss für diesen Test ein Wert für das Test-Ergebnis eingetragen werden?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Anhang muss eingegeben werden" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "Muss für diesen Test ein Anhang für das Test-Ergebnis hinzugefügt werden?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Auswahlmöglichkeiten" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "Gültige Optionen für diesen Test (durch Komma getrennt)" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "Checkbox-Parameter können keine Einheiten haben" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "Checkbox-Parameter können keine Auswahl haben" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "Vorlagen-Name des Parameters muss eindeutig sein" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Name des Parameters" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "Physikalische Einheiten für diesen Parameter" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "Parameter-Beschreibung" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "Checkbox" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "Ist dieser Parameter eine Checkbox?" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "Gültige Optionen für diesen Parameter (durch Kommas getrennt)" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "Ungültige Auswahl für Parameterwert" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Ausgangsteil" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Parameter Vorlage" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Parameter Wert" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Standard-Wert" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Standard Parameter Wert" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "Teilnummer oder Teilname" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Eindeutige Teil-ID" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "IPN-Wert des Teils" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Stufe" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "Stücklistenebene" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Ausgangsteil auswählen" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Untergeordnetes Teil" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Teil für die Nutzung in der Stückliste auswählen" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "Stücklisten-Anzahl für dieses Stücklisten-Teil" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Diese Stücklisten-Position ist optional" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Diese Stücklisten-Position ist ein Verbrauchsartikel (sie wird nicht in Bauaufträgen verfolgt)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Überschuss" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Geschätzter Ausschuss (absolut oder prozentual)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "Referenz der Postion auf der Stückliste" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Notizen zur Stücklisten-Position" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Prüfsumme" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "Prüfsumme der Stückliste" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "überprüft" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "Diese Stücklistenposition wurde validiert" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "Wird vererbt" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Diese Stücklisten-Position wird in die Stücklisten von Teil-Varianten vererbt" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Bestand von Varianten kann für diese Stücklisten-Position verwendet werden" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "Menge muss eine Ganzzahl sein" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "Zuliefererteil muss festgelegt sein" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "Stücklisten Ersatzteile" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "Ersatzteil kann nicht identisch mit dem Hauptteil sein" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Übergeordnete Stücklisten Position" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Ersatzteil" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Teil 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Teil 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "verknüpftes Teil auswählen" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "Teil-Beziehung kann nicht zwischen einem Teil und sich selbst erstellt werden" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "Doppelte Beziehung existiert bereits" @@ -8593,7 +8601,7 @@ msgstr "Teilbild nicht gefunden" msgid "Part Pricing" msgstr "Teilbepreisung" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "Das Plugin kann nicht gelöscht werden, da es derzeit aktiv ist" @@ -9001,44 +9009,44 @@ msgstr "Unterstützt das Scannen von TME-Barcodes" msgid "The Supplier which acts as 'TME'" msgstr "Der Lieferant, der als 'TME' fungiert" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "Nur Mitarbeiter können Plugins verwalten" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "Plugin-Installation ist deaktiviert" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "Plugin wurde erfolgreich installiert" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "Plugin installiert in {path}" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "Plugin wurde nicht in der Registry gefunden" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "Plugin ist kein gepacktes Plugin" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "Plugin-Paketname nicht gefunden" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "Plugin-Deinstallation ist deaktiviert" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "Plugin kann nicht deinstalliert werden, da es momentan aktiv ist" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "Plugin erfolgreich deinstallieren" @@ -9156,6 +9164,38 @@ msgstr "Beispiel-Währungswechsel-Plugin" msgid "InvenTree Contributors" msgstr "InvenTree Mitwirkende" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "Quell-URL" @@ -9234,6 +9274,30 @@ msgstr "Konfiguration löschen" msgid "Delete the plugin configuration from the database" msgstr "Plugin-Konfiguration aus der Datenbank löschen" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Keine korrekten Objekte für Vorlage gegeben" @@ -9518,7 +9582,7 @@ msgstr "Testergebnisse" msgid "Test" msgstr "Test" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Ergebnis" @@ -9892,7 +9956,7 @@ msgstr "Anzahl stimmt nicht mit den Seriennummern überein" msgid "Serial numbers already exist" msgstr "Seriennummern existieren bereits" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "Testvorlage existiert nicht" @@ -9940,67 +10004,67 @@ msgstr "Status-Codes müssen zusammenpassen" msgid "StockItem cannot be moved as it is not in stock" msgstr "Lagerartikel kann nicht bewegt werden, da kein Bestand vorhanden ist" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Eintrags-Notizen" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Wert muss für diesen Test angegeben werden" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "Anhang muss für diesen Test hochgeladen werden" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Testergebnis" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Test Ausgabe Wert" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Test Ergebnis Anhang" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Test Notizen" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "Teststation" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "Der Bezeichner der Teststation, in der der Test durchgeführt wurde" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "Gestartet" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "Der Zeitstempel des Teststarts" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "Fertiggestellt" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "Der Zeitstempel der Test-Beendigung" diff --git a/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po index 67173e9458..e8ab13745a 100644 --- a/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/el/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -65,9 +65,9 @@ msgstr "Εισάγετε ημερομηνία" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Κινέζικα (Παραδοσιακά)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Σύνδεση στην εφαρμογή" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Διπλότυπα ονόματα δεν μπορούν να υπάρχ msgid "Invalid choice" msgstr "Μη έγκυρη επιλογή" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Όνομα" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Σφάλμα διακομιστή" msgid "An error has been logged by the server." msgstr "Ένα σφάλμα έχει καταγραφεί από το διακομιστή." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Πρέπει να είναι αριθμός" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Επιλέξτε νόμισμα από τις διαθέσιμες επ msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Δεν έχετε άδεια να αλλάξετε αυτόν τον ρόλο χρήστη." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Μόνο υπερχρήστες (superusers) μπορούν να δημιουργήσουν νέους χρήστες" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Ο λογαριασμός σας δημιουργήθηκε." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Παρακαλούμε χρησιμοποιήστε τη λειτουργία επαναφοράς κωδικού πρόσβασης για να συνδεθείτε" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Καλώς ήρθατε στο InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Μη έγκυρη τιμή" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Αρχείο Δεδομένων" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Επιλέξτε ένα αρχείο για ανέβασμα" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Μη υποστηριζόμενος τύπος αρχείου" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Το αρχείο είναι πολύ μεγάλο" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Δεν βρέθηκαν στήλες στο αρχείο" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Δεν βρέθηκαν γραμμές δεδομένων στο αρχείο" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Δεν παρασχέθηκαν σειρές δεδομένων" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Δεν δόθηκαν στήλες δεδομένων" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Λείπει απαιτούμενη στήλη: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Διπλή στήλη: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Απομακρυσμένες Εικόνες" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "Διεύθυνση URL του αρχείου απομακρυσμένης εικόνας" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Η λήψη εικόνων από απομακρυσμένο URL δεν είναι ενεργοποιημένη" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Η έκδοση πρέπει να ακυρωθεί πριν διαγραφεί" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Η έκδοση πρέπει να ακυρωθεί πριν διαγρα msgid "Consumable" msgstr "Αναλώσιμο" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Κατανεμημένο" msgid "Available" msgstr "Διαθέσιμο" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Διαθέσιμο" msgid "Build Order" msgstr "Σειρά Κατασκευής" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Αναφορά Παραγγελίας Κατασκευής" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "BuildOrder στην οποία έχει δοθεί αυτή η κατα #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Χρήστης ή ομάδα υπεύθυνη για αυτή την ε msgid "External Link" msgstr "Εξωτερικοί σύνδεσμοι" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Σύνδεσμος προς εξωτερική διεύθυνση URL" @@ -1110,7 +1110,7 @@ msgstr "Η παραγγελία κατασκευής {build} έχει ολοκλ msgid "A build order has been completed" msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθεί" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Δεν καθορίστηκε έξοδος κατασκευής" @@ -1122,37 +1122,37 @@ msgstr "Η παραγγελία κατασκευής έχει ολοκληρωθ msgid "Build output does not match Build Order" msgstr "Η έξοδος κατασκευής δεν ταιριάζει με την παραγγελία κατασκευής" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Η ποσότητα δεν μπορεί να είναι μεγαλύτερη από την παραγόμενη ποσότητα" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Το προϊόν κατασκευής {serial} δεν έχει περάσει όλες τις απαιτούμενες δοκιμές" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Αντικείμενο κατασκευής" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Αντικείμενο κατασκευής" msgid "Quantity" msgstr "Ποσότητα" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Απαιτούμενη ποσότητα για την εντολή κατασκευής" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Το στοιχείο κατασκευής πρέπει να ορίζει μια έξοδο κατασκευής, καθώς το κύριο τμήμα επισημαίνεται ως ανιχνεύσιμο" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Η καταχωρημένη ποσότητα ({q}) δεν πρέπει να υπερβαίνει τη διαθέσιμη ποσότητα αποθέματος ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Στοιχείο αποθέματος είναι υπερ-κατανεμημένο" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Η ποσότητα πρέπει να είναι μεγαλύτερη από 0" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Η ποσότητα πρέπει να είναι 1 για σειριακό απόθεμα" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Το επιλεγμένο στοιχείο αποθέματος δεν ταιριάζει με τη γραμμή ΤΥ" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Το επιλεγμένο στοιχείο αποθέματος δεν msgid "Stock Item" msgstr "Στοιχείο Αποθέματος" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Στοιχείο πηγαίου αποθέματος" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Ποσότητα αποθέματος για διάθεση για κατασκευή" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Εγκατάσταση σε" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Αποθήκη προορισμού" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Χρήστης" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "Σύνδεσμος" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Συνημμένο" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Το αρχείο λείπει" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Λείπει ο εξωτερικός σύνδεσμος" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Επιλέξτε αρχείο για επισύναψη" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Σχόλιο" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Όνομα αρχείου" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po index c08af3c27d..43a03706df 100644 --- a/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-10 18:13+0000\n" +"POT-Creation-Date: 2024-09-16 01:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,9 +66,9 @@ msgstr "" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -365,7 +365,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -420,9 +420,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -447,7 +447,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -518,12 +518,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -537,43 +537,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -586,85 +586,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -760,7 +760,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -768,7 +768,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -817,7 +817,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -826,7 +826,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -867,7 +867,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -893,10 +893,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1069,7 +1069,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1111,7 +1111,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1123,37 +1123,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1195,36 +1195,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1242,19 +1242,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1263,7 +1263,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1601,12 +1601,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1668,13 +1668,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2146,19 +2146,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2351,7 +2351,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2579,7 +2579,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3248,488 +3248,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3737,96 +3745,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3843,28 +3851,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3874,186 +3882,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4091,75 +4099,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4495,7 +4503,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4506,7 +4514,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4581,7 +4589,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4593,11 +4601,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4619,7 +4627,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5205,7 +5213,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6558,12 +6566,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6709,7 +6717,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6745,7 +6753,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6868,7 +6876,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7007,159 +7015,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7171,363 +7179,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8594,7 +8602,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9002,44 +9010,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9157,6 +9165,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9235,6 +9275,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9519,7 +9583,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9893,7 +9957,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9941,67 +10005,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po index 1d1f428dda..10129b40b8 100644 --- a/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/es/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -65,9 +65,9 @@ msgstr "Ingrese la fecha" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Chino (Tradicional)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Iniciar sesión en la aplicación" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Los nombres duplicados no pueden existir bajo el mismo padre" msgid "Invalid choice" msgstr "Selección no válida" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nombre" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Error de servidor" msgid "An error has been logged by the server." msgstr "Se ha registrado un error por el servidor." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Debe ser un número válido" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Seleccionar moneda de las opciones disponibles" msgid "Username" msgstr "Nombre de usuario" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Nombre" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Nombre del usuario" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Apellido" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Apellido del usuario" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Dirección de correo del usuario" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Personal" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Tiene este usuario permisos de personal" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Superusuario" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Es este usuario un superusuario" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Es este usuario un superusuario" msgid "Active" msgstr "Activo" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Esta cuenta de usuario está activa" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "No tiene permiso para cambiar este rol de usuario." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Solo los superusuarios pueden crear nuevos usuarios" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Su cuenta ha sido creada." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Por favor, utilice la función de restablecer la contraseña para iniciar sesión" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Bienvenido a InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Valor inválido" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Archivo de datos" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Seleccione el archivo para subir" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Tipo de archivo no soportado" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "El archivo es demasiado grande" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "No hay columnas en el archivo" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "No hay filas de datos en el archivo" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "No se proporcionaron filas de datos" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "No hay columnas de datos proporcionadas" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Falta la columna requerida: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Columna duplicada: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Imagen remota" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL de imagen remota" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "La descarga de imágenes desde la URL remota no está habilitada" @@ -759,7 +759,7 @@ msgstr "Asignadas a" msgid "Build must be cancelled before it can be deleted" msgstr "La compilación debe cancelarse antes de poder ser eliminada" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "La compilación debe cancelarse antes de poder ser eliminada" msgid "Consumable" msgstr "Consumible" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Asignadas" msgid "Available" msgstr "Disponible" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Disponible" msgid "Build Order" msgstr "Construir órden" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Número de orden de construcción o armado" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Orden de Construcción o Armado a la que se asigna" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Usuario o grupo responsable de esta orden de construcción" msgid "External Link" msgstr "Link externo" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Enlace a URL externa" @@ -1110,7 +1110,7 @@ msgstr "El pedido {build} ha sido procesado" msgid "A build order has been completed" msgstr "Pedido #[order] ha sido procesado" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "No se ha especificado salida de construcción" @@ -1122,37 +1122,37 @@ msgstr "La construcción de la salida ya está completa" msgid "Build output does not match Build Order" msgstr "La salida de la construcción no coincide con el orden de construcción" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "La cantidad debe ser mayor que cero" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "La cantidad no puede ser mayor que la cantidad de salida" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "La construcción {serial} no ha pasado todas las pruebas requeridas" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "Construir línea de pedido" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Ensamblar equipo" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Ensamblar equipo" msgid "Quantity" msgstr "Cantidad" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Cantidad requerida para orden de ensamble" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item de construcción o armado debe especificar un resultado o salida, ya que la parte maestra está marcada como rastreable" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Cantidad asignada ({q}) no debe exceder la cantidad disponible de stock ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Artículo de stock sobreasignado" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Cantidad asignada debe ser mayor que cero" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "La cantidad debe ser 1 para el stock serializado" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "El artículo de almacén selelccionado no coincide con la línea BOM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "El artículo de almacén selelccionado no coincide con la línea BOM" msgid "Stock Item" msgstr "Artículo de stock" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Producto original de stock" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Cantidad de stock a asignar para construir" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Instalar en" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Artículo de stock de destino" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "Nivel de construcción" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Nombre de parte" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Paquetes" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "ID de Parte" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "IPN de la parte" @@ -1667,13 +1667,13 @@ msgstr "Rastreable" msgid "Inherited" msgstr "Heredado" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Permitir variantes" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Item de Lista de Materiales" @@ -2145,25 +2145,25 @@ msgstr "Salidas incompletas" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" #: common/currency.py:132 msgid "Invalid currency code" -msgstr "" +msgstr "Código de divisa inválido" #: common/currency.py:134 msgid "Duplicate currency code" @@ -2225,7 +2225,7 @@ msgstr "Fecha y hora de la última actualización" #: common/models.py:122 msgid "Site URL is locked by configuration" -msgstr "" +msgstr "La URL del sitio está bloqueada por su configuración" #: common/models.py:152 msgid "Unique project code" @@ -2333,7 +2333,7 @@ msgstr "Seleccione la moneda base para los cálculos de precios" #: common/models.py:1285 msgid "Supported Currencies" -msgstr "" +msgstr "Monedas admitidas" #: common/models.py:1286 msgid "List of supported currency codes" @@ -2350,7 +2350,7 @@ msgstr "Con qué frecuencia actualizar los tipos de cambio (establecer a cero pa #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "días" @@ -2578,7 +2578,7 @@ msgstr "Copiar plantillas de parámetros de categoría" msgid "Copy category parameter templates when creating a part" msgstr "Copiar plantillas de parámetros de categoría al crear una parte" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Habilitar plugins para responder a eventos internos" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Habilitar códigos de proyecto" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Habilitar códigos de proyecto para rastrear proyectos" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Funcionalidad de inventario" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Habilite la funcionalidad de inventario para registrar los niveles de existencias y calcular el valor de las existencias" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Excluir Ubicaciones Externas" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Excluir artículos en existencia en ubicaciones externas de los cálculos de inventario" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Periodo de inventario automático" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Número de días entre el registro automático del inventario (establecer en cero para desactivarlo)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Intervalo de borrado de informe" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Los informes de inventario se eliminarán después de un número de días especificado" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Mostrar nombres completos de los usuarios" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Mostrar nombres completos de usuarios en lugar de nombres de usuario" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "Habilitar datos de estación de prueba" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "Habilitar la recolección de datos de estaciones de prueba para resultados de prueba" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Tecla de ajustes (debe ser única - mayúsculas y minúsculas" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Ocultar partes inactivas" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ocultar partes inactivas en los resultados mostrados en la página de inicio" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Mostrar partes suscritas" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Mostrar las partes suscritas en la página principal" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Mostrar categorías suscritas" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Mostrar categorías de partes suscritas en la página de inicio" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Mostrar últimas partes" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Mostrar las últimas partes en la página de inicio" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "Mostrar BOM inválidos" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Mostrar BOMs que esperan validación en la página de inicio" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Mostrar cambios recientes de stock" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Mostrar artículos de stock recientemente modificados en la página de inicio" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Mostrar stock bajo" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Mostrar artículos de stock bajo en la página de inicio" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Mostrar stock agotado" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Mostrar artículos agotados en la página de inicio" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Mostrar stock necesario" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Mostrar artículos de stock necesarios para trabajos en la página de inicio" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Mostrar stock caducado" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Mostrar artículos de stock caducados en la página de inicio" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Mostrar stock obsoleto" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Mostrar artículos de stock obsoletos en la página de inicio" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Mostrar trabajos pendientes" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Mostrar trabajos pendientes en la página de inicio" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Mostrar trabajos vencidos" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Mostrar trabajos pendientes en la página de inicio" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Mostrar Órdenes de Compra Pendientes" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Mostrar las OC destacadas en la página de inicio" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Mostrar OC atrasadas" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Mostrar las OC vencidas en la página de inicio" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Mostrar OV pendiemtes" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Mostrar OV pendientes en la página de inicio" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Mostrar OV atrasadas" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Mostrar OV atrasadas en la página de inicio" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Mostrar envíos pendientes de SO" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Mostrar envíos SO pendientes en la página de inicio" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Mostrar novedades" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Mostrar las últimas novedades de InvenTree en la página de inicio" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Mostrar etiqueta interior" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Mostrar etiquetas PDF en el navegador, en lugar de descargar como un archivo" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Impresora predeterminada" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Mostrar informe en línea" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar informes PDF en el navegador, en lugar de descargar como un archivo" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Buscar partes" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Buscar partes de proveedor" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Buscar Partes del Fabricante" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Ocultar Partes Inactivas" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Excluir las partes inactivas de la ventana de previsualización de búsqueda" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Buscar categorías" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Mostrar categorias de la parte en la ventana de previsualización de búsqueda" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Buscar inventario" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Mostrar artículos del stock en la ventana de previsualización de búsqueda" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Ocultar Artículos del Stock Agotados" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Excluir artículos de stock que no están disponibles en la ventana de previsualización de búsqueda" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Buscar ubicaciones" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Mostrar ubicaciones de almacén en la ventana de vista previa de búsqueda" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Buscar empresas" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Mostrar empresas en la ventana de vista previa de búsqueda" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Buscar Pedidos de Construcción" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Buscar órdenes de compra" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Excluir pedidos de compra inactivos" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Buscar órdenes de venta" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Buscar órdenes de devolución" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Resultados de la vista previa" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Búsqueda usando una expresión regular" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Habilitar expresiones regulares en las consultas de búsqueda" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Búsqueda por palabra completa" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "Las consultas de búsqueda devuelven resultados para palabras enteras coincidentes" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Mostrar cantidad en formularios" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Mostrar la cantidad de partes disponibles en algunos formularios" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Formularios de cierre de teclas de escape" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Usa la clave de escape para cerrar formularios modales" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Barra de navegación fija" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "La posición de la barra de navegación se fija en la parte superior de la pantalla" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Formato de Fecha" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Formato preferido para mostrar fechas" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planificación de partes" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Recibir reportes de error" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "Últimas impresoras usadas" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Usuario" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Cantidad de salto de precio" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "Cantidad de salto de precio" msgid "Price" msgstr "Precio" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Precio unitario a la cantidad especificada" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Punto final en el que se recibe este webhook" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Nombre para este webhook" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Está activo este webhook" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Token para el acceso" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Clave" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Secreto compartido para HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "ID de mensaje" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Identificador único para este mensaje" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Servidor desde el cual se recibió este mensaje" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Encabezado" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Encabezado del mensaje" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Cuerpo" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Cuerpo de este mensaje" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Endpoint en el que se recibió este mensaje" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Trabajado en" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "¿El trabajo en este mensaje ha terminado?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Título" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Título" msgid "Link" msgstr "Enlace" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Publicado" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autor" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Resumen" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Leer" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "¿Esta noticia ya fue leída?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "¿Esta noticia ya fue leída?" msgid "Image" msgstr "Imágen" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Archivo de imagen" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "Nombre de unidad debe ser un identificador válido" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Nombre de unidad" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Símbolo" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Símbolo de unidad opcional" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definición" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Definición de unidad" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Archivo adjunto" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Archivo no encontrado" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Falta enlace externo" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Seleccionar archivo para adjuntar" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Comentario" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Clave" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "Etiqueta" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "Los artículos han sido recibidos contra una orden de devolución" msgid "Error raised by plugin" msgstr "Error generado por el complemento" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Está en ejecución" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Tareas pendientes" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Tareas Programadas" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Tareas fallidas" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "Identificación de Tarea" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "Identificación de tarea única" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Bloquear" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Bloquear hora" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Nombre de la tarea" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Función" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Nombre de la Función" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Argumentos" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Argumentos de la tarea" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Argumentos de palabra clave" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Argumentos de palabra clave de tarea" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Nombre de Archivo" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Nombre del parámetro" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Valor del parámetro" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Descripción de la parte del proveedor" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Descripción de la parte del proveedor" msgid "Note" msgstr "Nota" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "costo base" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Cargo mínimo (p. ej., cuota de almacenamiento)" @@ -4618,7 +4626,7 @@ msgstr "Cantidad de paquete" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Cantidad total suministrada en un solo paquete. Dejar vacío para artículos individuales." -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "múltiple" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Datos" @@ -6557,12 +6565,12 @@ msgstr "Usado en" msgid "Building" msgstr "En construcción" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Costo mínimo" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Costo máximo" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Inventario Total" msgid "Input quantity for price calculation" msgstr "Cantidad de entrada para el cálculo del precio" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Categoría de parte" @@ -6867,7 +6875,7 @@ msgstr "Parte con este nombre, IPN y revisión ya existe." msgid "Parts cannot be assigned to structural part categories!" msgstr "¡No se pueden asignar partes a las categorías de partes estructurales!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Nombre de la parte" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "Último inventario" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Vender múltiples" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "Moneda utilizada para almacenar en caché los cálculos de precios" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Costo mínimo de BOM" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "Costo mínimo de partes de componentes" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Costo máximo de BOM" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "Costo máximo de partes de componentes" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "Costo mínimo de compra" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "Costo histórico mínimo de compra" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "Costo máximo de compra" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "Costo histórico máximo de compra" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "Precio interno mínimo" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "Costo mínimo basado en precios reducidos internos" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "Precio interno máximo" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "Costo máximo basado en precios reducidos internos" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "Precio mínimo de proveedor" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "Precio mínimo de la parte de proveedores externos" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "Precio máximo de proveedor" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "Precio máximo de la parte de proveedores externos" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "Costo mínimo de variante" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "Costo mínimo calculado de las partes variantes" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "Costo máximo de variante" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "Costo máximo calculado de las partes variantes" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "Anular el costo mínimo" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "Costo mínimo general calculado" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "Precio de venta mínimo" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "Precio de venta mínimo basado en precios reducidos" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "Precio de venta máximo" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "Precio de venta máximo basado en precios reducidos" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Costo de venta mínimo" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "Precio de venta mínimo histórico" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "Costo de Venta Máximo" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Número de artículos" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "Fecha" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Notas adicionales" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Costo de Stock Mínimo" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Costo mínimo estimado del stock disponible" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Informe" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Número de partes" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "Las plantillas de prueba solo pueden ser creadas para partes de prueba" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Nombre de prueba" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Introduzca un nombre para la prueba" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Descripción de prueba" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Introduce la descripción para esta prueba" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Habilitado" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Requerido" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "¿Es necesario pasar esta prueba?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Requiere valor" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "¿Esta prueba requiere un valor al agregar un resultado de la prueba?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Adjunto obligatorio" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "¿Esta prueba requiere un archivo adjunto al agregar un resultado de la prueba?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Opciones" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "El nombre de parámetro en la plantilla tiene que ser único" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Nombre de Parámetro" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "Casilla de verificación" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "¿Es este parámetro una casilla de verificación?" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "Opciones válidas para este parámetro (separados por comas)" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "Opción inválida para el valor del parámetro" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Parte principal" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Plantilla de parámetro" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Valor del parámetro" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Valor predeterminado" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Valor de parámetro por defecto" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "ID de parte o nombre de parte" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Valor de ID de parte única" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Valor IPN de parte" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Nivel" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "Nivel de BOM" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Seleccionar parte principal" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Sub parte" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Seleccionar parte a utilizar en BOM" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "Cantidad del artículo en BOM" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Este artículo BOM es opcional" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Este artículo de BOM es consumible (no está rastreado en órdenes de construcción)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Exceso" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Cantidad estimada de desperdicio de construcción (absoluta o porcentaje)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "Referencia de artículo de BOM" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Notas del artículo de BOM" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Suma de verificación" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "Suma de verificación de línea de BOM" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Validado" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "Este artículo de BOM ha sido validado" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Este artículo BOM es heredado por BOMs para partes variantes" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Artículos de stock para partes variantes pueden ser usados para este artículo BOM" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "La cantidad debe ser un valor entero para las partes rastreables" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "Debe especificar la subparte" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "Ítem de BOM sustituto" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "La parte sustituta no puede ser la misma que la parte principal" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Artículo BOM superior" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Sustituir parte" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Parte 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Parte 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Seleccionar parte relacionada" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "Imagen de parte no encontrada" msgid "Part Pricing" msgstr "Precio de parte" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "URL de origen" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "No se han proporcionado objetos válidos a la plantilla" @@ -9518,7 +9582,7 @@ msgstr "Resultados de la Prueba" msgid "Test" msgstr "Prueba" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Resultado" @@ -9892,7 +9956,7 @@ msgstr "La cantidad no coincide con los números de serie" msgid "Serial numbers already exist" msgstr "Números de serie ya existen" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "Los códigos de estado del stock deben coincidir" msgid "StockItem cannot be moved as it is not in stock" msgstr "Stock no se puede mover porque no está en stock" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Notas de entrada" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Debe proporcionarse un valor para esta prueba" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "El archivo adjunto debe ser subido para esta prueba" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Resultado de la prueba" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Valor de salida de prueba" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Adjunto de resultados de prueba" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Notas de prueba" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po index 685ea3df4c..364edecf78 100644 --- a/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/es_MX/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Spanish, Mexico\n" "Language: es_MX\n" @@ -65,9 +65,9 @@ msgstr "Ingrese la fecha" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Chino (Tradicional)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Iniciar sesión en la aplicación" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Los nombres duplicados no pueden existir bajo el mismo padre" msgid "Invalid choice" msgstr "Selección no válida" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nombre" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Error de servidor" msgid "An error has been logged by the server." msgstr "Se ha registrado un error por el servidor." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Debe ser un número válido" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Seleccionar moneda de las opciones disponibles" msgid "Username" msgstr "Nombre de usuario" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Nombre" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Nombre de usuario" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Apellido" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Apellido del usuario" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Dirección de email del usuario" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Personal" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Tiene permisos de personal este usuario" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Superusuario" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Este usuario es un superusuario" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Este usuario es un superusuario" msgid "Active" msgstr "Activo" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Esta cuenta de usuario está activa" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "No tiene permiso para cambiar este cargo de usuario." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Solo los superusuarios pueden crear nuevos usuarios" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Su cuenta ha sido creada." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Por favor, utilice la función de restablecer la contraseña para iniciar sesión" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Bienvenido a InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Valor inválido" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Archivo de datos" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Seleccione el archivo para subir" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Tipo de archivo no soportado" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "El archivo es demasiado grande" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "No hay columnas en el archivo" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "No hay filas de datos en el archivo" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "No se proporcionaron filas de datos" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "No hay columnas de datos para suministrar" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Falta la columna requerida: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Columna duplicada: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Imagen remota" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL de imagen remota" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "La descarga de imágenes desde la URL remota no está habilitada" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po index 7ed87d5535..5d84f7e4cb 100644 --- a/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/et/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Language: et_EE\n" @@ -65,9 +65,9 @@ msgstr "" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Eesnimi" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Perekonnanimi" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Osa ID" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po index 42f1dd0f9c..ded2d793c4 100644 --- a/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/fa/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -65,9 +65,9 @@ msgstr "تاریخ را وارد کنید" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "فایل‌های داده" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "فایل را برای بارگذاری انتخاب کنید" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "این نوع فایل پشتیبانی نمی‌شود" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "حجم فایل خیلی بزرگ است" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "هیچ ستونی در فایل یافت نشد" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "هیچ ردیف داده ای در فایل یافت نشد" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "هیچ ردیف داده ای ارائه نشده است" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "هیچ ستون داده ای ارائه نشده است" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "ستون مورد نیاز وجود ندارد: \"{name}\"" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "ستون تکراری: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "آدرس فایل تصویری از راه دور" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po index 7fc84a1e83..88530909f7 100644 --- a/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/fi/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -65,9 +65,9 @@ msgstr "Anna päivämäärä" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "Virheellinen valinta" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nimi" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Palvelinvirhe" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Täytyy olla kelvollinen luku" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Valitse valuutta käytettävissä olevista vaihtoehdoista" msgid "Username" msgstr "Käyttäjätunnus" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Etunimi" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Sukunimi" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "Aktiivinen" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Virheellinen arvo" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Datatiedosto" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Valitse lähetettävä datatiedosto" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Tiedostotyyppiä ei tueta" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Tiedosto on liian suuri" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Datarivejä ei annettu" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Datasarakkeita ei annettu" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Vaadittu sarake puuttuu: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplikaatti sarake: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "Kuvatiedoston URL" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Kuvien lataaminen ei ole käytössä" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "Saatavilla" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Saatavilla" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "Ulkoinen linkki" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Linkki ulkoiseen URLiin" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "Määrä" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "Varastotuote" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "Seurattavissa" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "päivää" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Näytä uutiset" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Näytä uutiset kotisivulla" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Käyttäjä" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "Hinta" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Salaisuus" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Isäntä" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Otsikko" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Otsikko" msgid "Link" msgstr "Linkki" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Julkaistu" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Julkaisija" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Yhteenveto" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "Kuva" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Kuvatiedosto" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Liite" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Puuttuva tiedosto" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Puuttuva ulkoinen linkki" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Valitse liitettävä tiedosto" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentti" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Avain" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Tiedostonimi" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "Muistiinpano" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "Päivämäärä" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Muut merkinnät" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Raportti" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Käytössä" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po index fd001b934c..f4cc3d81e8 100644 --- a/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/fr/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -65,9 +65,9 @@ msgstr "Entrer la date" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Chinois (Traditionnel)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Se connecter à l'application" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Les noms dupliqués ne peuvent pas exister sous le même parent" msgid "Invalid choice" msgstr "Choix invalide" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nom" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Erreur serveur" msgid "An error has been logged by the server." msgstr "Une erreur a été loguée par le serveur." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Doit être un nombre valide" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Sélectionnez la devise à partir des options disponibles" msgid "Username" msgstr "Nom d'utilisateur" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Prénom" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Prénom de l'utilisateur" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Nom" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Nom de famille de l'utilisateur" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Adresse e-mail de l'utilisateur" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Staff" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Cet utilisateur a-t-il les permissions du staff" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Super-utilisateur" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Cet utilisateur est-il un super-utilisateur" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Cet utilisateur est-il un super-utilisateur" msgid "Active" msgstr "Actif" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Ce compte d'utilisateur est-il actif" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Vous n'avez pas la permission de modifier ce rôle utilisateur." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Seuls les super-utilisateurs peuvent créer de nouveaux utilisateurs" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Votre compte a été créé." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Veuillez utiliser la fonction de réinitialisation du mot de passe pour vous connecter" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Bienvenue dans InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Valeur non valide" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Fichier de données" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Sélectionnez le fichier de données à envoyer" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Format de fichier non supporté" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Fichier trop volumineux" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Pas de colonnes trouvées dans le fichier" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Par de lignes de données trouvées dans le fichier" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Pas de lignes de données fournies" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Pas de colonne de données fournie" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Colonne requise manquante : {name}" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Colonne duliquée : '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Images distantes" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL du fichier image distant" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Le téléchargement des images depuis une URL distante n'est pas activé" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "La construction doit être annulée avant de pouvoir être supprimée" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "La construction doit être annulée avant de pouvoir être supprimée" msgid "Consumable" msgstr "Consommable" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Allouée" msgid "Available" msgstr "Disponible" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Disponible" msgid "Build Order" msgstr "Ordre de Fabrication" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Référence de l' Ordre de Fabrication" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "BuildOrder associé a cette fabrication" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Utilisateur ou groupe responsable de cet ordre de construction" msgid "External Link" msgstr "Lien Externe" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Lien vers une url externe" @@ -1110,7 +1110,7 @@ msgstr "La commande de construction {build} a été effectuée" msgid "A build order has been completed" msgstr "Une commande de construction a été effectuée" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Pas d'ordre de production défini" @@ -1122,37 +1122,37 @@ msgstr "L'ordre de production a déjà été réalisé" msgid "Build output does not match Build Order" msgstr "L'ordre de production de correspond pas à l'ordre de commande" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "La quantité doit être supérieure à zéro" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "La quantité ne peut pas être supérieure à la quantité de sortie" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "La sortie de compilation {serial} n'a pas réussi tous les tests requis" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Création de l'objet" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Création de l'objet" msgid "Quantity" msgstr "Quantité" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Quantité requise pour la commande de construction" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "L'élément de construction doit spécifier une sortie de construction, la pièce maîtresse étant marquée comme objet traçable" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "La quantité allouée ({q}) ne doit pas excéder la quantité disponible ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "L'article de stock est suralloué" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "La quantité allouée doit être supérieure à zéro" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "La quantité doit être de 1 pour stock sérialisé" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "L'article de stock sélectionné ne correspond pas à la ligne BOM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "L'article de stock sélectionné ne correspond pas à la ligne BOM" msgid "Stock Item" msgstr "Article en stock" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Stock d'origine de l'article" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Quantité de stock à allouer à la construction" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Installer dans" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Stock de destination de l'article" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Nom de l'article" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Conditionnement" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "ID de composant" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "Traçable" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Article du BOM" @@ -2145,19 +2145,19 @@ msgstr "Sorties incomplètes" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "L'utilisateur n'a pas les permissions de supprimer cette pièce jointe" @@ -2350,7 +2350,7 @@ msgstr "Fréquence de mise à jour des taux de change (définir à zéro pour d #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "jours" @@ -2578,7 +2578,7 @@ msgstr "Copier les templates de paramètres de catégorie" msgid "Copy category parameter templates when creating a part" msgstr "Copier les templates de paramètres de la catégorie lors de la création d'une pièce" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Autoriser les plugins à répondre aux évènements internes" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Activer les codes projet" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Fonctionnalité d'inventaire" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Activer la fonctionnalité d'inventaire pour enregistrer les niveaux de stock et le calcul de la valeur du stock" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Période de l'inventaire automatique" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Nombre de jours entre l'enregistrement automatique des stocks (définir à zéro pour désactiver)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Les rapports d'inventaire seront supprimés après le nombre de jours spécifié" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Clé du paramètre (doit être unique - insensible à la casse)" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Afficher les composants suivis" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Afficher les composants suivis sur l'écran d'accueil" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Afficher les catégories suivies" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Afficher les catégories de pièces suivies sur la page d'accueil" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Afficher les dernières pièces" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Afficher les derniers composants sur la page d'accueil" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Afficher les listes de matériaux en attente de validation sur la page d'accueil" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Afficher les dernières modifications du stock" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Afficher les articles de stock récemment modifiés sur la page d'accueil" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Afficher le stock faible" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Afficher les articles en stock bas sur la page d'accueil" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Afficher le stock épuisé" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Afficher les stocks épuisés sur la page d'accueil" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Afficher le stock nécessaire" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Afficher les pièces en stock nécessaires pour les assemblages sur la page d'accueil" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Afficher le stock expiré" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Afficher les pièces en stock expirées sur la page d'accueil" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Afficher le stock périmé" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Afficher les articles de stock périmés sur la page d'accueil" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Afficher les constructions en attente" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Afficher les constructions en attente sur la page d'accueil" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Afficher les constructions en retard" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Afficher les constructions en retard sur la page d'accueil" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Afficher les commandes en suspens" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Afficher les commandes en suspens sur la page d'accueil" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Afficher les commandes en retard" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Afficher les commandes en retard sur la page d'accueil" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Afficher les envois en suspens" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Afficher les envois en suspens sur la page d'accueil" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Afficher les envois en retard" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Afficher les envois en retard sur la page d'accueil" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Afficher les nouvelles" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Afficher les nouvelles sur la page d'accueil" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Affichage du libellé en ligne" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Afficher les étiquettes PDF dans le navigateur, au lieu de les télécharger en tant que fichier" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Imprimante d'étiquettes par défaut" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Configurer quelle imprimante d'étiquette doit être sélectionnée par défaut" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Affichage du rapport en ligne" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Afficher les rapports PDF dans le navigateur, au lieu de les télécharger en tant que fichier" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Rechercher de pièces" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Afficher les pièces dans la fenêtre d'aperçu de la recherche" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Recherche du fournisseur de pièces" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Afficher les pièces du fournisseur dans la fenêtre de prévisualisation de la recherche" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Rechercher les pièces du fabricant" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Afficher les pièces du fabricant dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Masquer les pièces inactives" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Exclure les pièces inactives de la fenêtre de prévisualisation de recherche" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Rechercher des catégories" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Afficher les catégories de pièces dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Rechercher dans le stock" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Afficher les pièces en stock dans la fenêtre d'aperçu de la recherche" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Cacher les pièces indisponibles" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Exclure les articles en stock qui ne sont pas disponibles de la fenêtre de prévisualisation de recherche" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Chercher des Emplacements" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Afficher les emplacements dans la fenêtre d'aperçu de la recherche" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Rechercher les entreprises" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Afficher les entreprises dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Rechercher les commandes de construction" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Afficher les commandes de construction dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Rechercher des bons de commande" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Afficher les bons de commande dans la fenêtre de prévisualisation de recherche" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Exclure les bons de commande inactifs" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Exclure les commandes d’achat inactives de la fenêtre de prévisualisation de recherche" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Rechercher les bons de commande" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Afficher les bons de commande dans la fenêtre de prévisualisation de la recherche" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Exclure les bons de commande inactives" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Exclure les bons de commande inactifs de la fenêtre de prévisualisation de recherche" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Rechercher les commandes retournées" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Résultats de l'aperçu de la recherche" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Nombre de résultats à afficher dans chaque section de la fenêtre de prévisualisation de recherche" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Recherche Regex" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Afficher la quantité dans les formulaires" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Afficher la quantité disponible dans certains formulaires" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "La touche Echap ferme les formulaires" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Utilisez la touche Echap pour fermer les formulaires modaux" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Barre de navigation fixe" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "La position de la barre de navigation est fixée en haut de l'écran" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Format de date" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Format préféré pour l'affichage des dates" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planification des pièces" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Afficher les informations de planification des pièces" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventaire des pièces" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Longueur de la chaîne dans les Tableau" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "Longueur maximale des chaînes affichées dans les tableaux" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Utilisateur" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "Prix" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Ce webhook (lien de rappel HTTP) est-il actif" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "Jeton" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Jeton d'accès" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Confidentiel" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "ID message" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Identifiant unique pour ce message" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Hôte" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Hôte à partir duquel ce message a été reçu" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Entête" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "En-tête de ce message" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Corps" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Corps de ce message" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Endpoint à partir duquel ce message a été reçu" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "Le travail sur ce message est-il terminé ?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "Id" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titre" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Titre" msgid "Link" msgstr "Lien" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Publié" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Auteur" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Résumé" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Lu" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Cette nouvelle a-t-elle été lue ?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "Cette nouvelle a-t-elle été lue ?" msgid "Image" msgstr "Image" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Fichier image" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbole" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Symbole d'unité facultatif" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Définition" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Définition de l'unité" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Pièce jointe" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Fichier manquant" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Lien externe manquant" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Sélectionnez un fichier à joindre" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Commentaire" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "Erreur déclenchée par le plugin" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "En cours d'exécution" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Tâches en attente" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Tâches planifiées" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Tâches échouées" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "ID de la tâche" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "ID unique de la tâche" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Verrouillé" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Heure verrouillé" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Nom de la tâche" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Fonction" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Nom de la fonction" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Arguments" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Arguments tâche" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Mots-clés Arguments" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Mots-clés arguments tâche" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Nom du fichier" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Nom du paramètre" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Valeur du paramètre" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Description de la pièce du fournisseur" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Description de la pièce du fournisseur" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "coût de base" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Frais minimums (par exemple frais de stock)" @@ -4618,7 +4626,7 @@ msgstr "Nombre de paquet" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "plusieurs" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Données" @@ -6557,12 +6565,12 @@ msgstr "Utilisé pour" msgid "Building" msgstr "Construction" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Coût minimal" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Coût maximal" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Stock total" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Catégorie de composant" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Nom de l'article" @@ -7006,159 +7014,159 @@ msgstr "Propriétaire responsable de cette pièce" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Ventes multiples" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Coût minimum de vente" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Notes additionnelles" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Nom de test" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Activé" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Requis" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Valeur requise" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Valeur par Défaut" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Surplus" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Validée" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Aucun objet valide n'a été fourni au modèle" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Résultat" @@ -9892,7 +9956,7 @@ msgstr "La quantité ne correspond pas au nombre de numéros de série" msgid "Serial numbers already exist" msgstr "Les numéros de série existent déjà" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po index 348a14aba4..e1495ce9d1 100644 --- a/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/he/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -65,9 +65,9 @@ msgstr "הזן תאריך סיום" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "בחירה שגויה" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "שם" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "המספר חייב להיות תקין" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "קישור חיצוני" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "כמות" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "משתמש" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "קישור" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "קובץ מצורף" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "קובץ חסר" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "חסר קישור חיצוני" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "בחר קובץ לצירוף" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "הערה" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "שם קובץ" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po index 6627bf800a..c6becd9205 100644 --- a/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/hi/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Language: hi_IN\n" @@ -65,9 +65,9 @@ msgstr "तारीख दर्ज करें" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po index abb0742287..43b2a51709 100644 --- a/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/hu/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -65,9 +65,9 @@ msgstr "Dátum megadása" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Kínai (Hagyományos)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Bejelentkezés" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Duplikált nevek nem lehetnek ugyanazon szülő alatt" msgid "Invalid choice" msgstr "Érvénytelen választás" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Név" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Kiszolgálóhiba" msgid "An error has been logged by the server." msgstr "A kiszolgáló egy hibaüzenetet rögzített." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Érvényes számnak kell lennie" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Válassz pénznemet a lehetőségek közül" msgid "Username" msgstr "Felhasználónév" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Keresztnév" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "A felhasználó keresztneve" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Vezetéknév" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "A felhasználó vezetékneve" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "A felhasználó e-mail címe" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Személyzet" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Van-e a felhasználónak személyzeti jogosultsága" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Rendszergazda" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "A felhasználó rendszergazda-e" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "A felhasználó rendszergazda-e" msgid "Active" msgstr "Aktív" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Aktív a felhasználói fiók" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Önnek nincs joga változtatni ezen a felhasználói szerepkörön." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Csak a superuser-ek hozhatnak létre felhasználókat" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "A fiókod sikeresen létrejött." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Kérlek használd a jelszó visszállítás funkciót a belépéshez" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Üdvözlet az InvenTree-ben" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Érvénytelen érték" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Adat fájl" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Fájl kiválasztása feltöltéshez" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Nem támogatott fájltípus" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Fájl túl nagy" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Nem találhatók oszlopok a fájlban" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Nincsenek adatsorok a fájlban" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Nincs adatsor megadva" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Nincs adat oszlop megadva" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Szükséges oszlop hiányzik: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplikált oszlop: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Távoli kép" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "A távoli kép URL-je" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Képek letöltése távoli URL-ről nem engedélyezett" @@ -759,7 +759,7 @@ msgstr "Hozzárendelve" msgid "Build must be cancelled before it can be deleted" msgstr "A gyártást be kell fejezni a törlés előtt" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "A gyártást be kell fejezni a törlés előtt" msgid "Consumable" msgstr "Fogyóeszköz" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Lefoglalva" msgid "Available" msgstr "Elérhető" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Elérhető" msgid "Build Order" msgstr "Gyártási utasítás" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Gyártási utasítás azonosító" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Gyártás, amihez ez a gyártás hozzá van rendelve" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Felhasználó vagy csoport aki felelős ezért a gyártásért" msgid "External Link" msgstr "Külső link" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link külső URL-re" @@ -1110,7 +1110,7 @@ msgstr "A {build} gyártási utasítás elkészült" msgid "A build order has been completed" msgstr "Gyártási utasítás elkészült" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Nincs gyártási kimenet megadva" @@ -1122,37 +1122,37 @@ msgstr "Gyártási kimenet már kész" msgid "Build output does not match Build Order" msgstr "Gyártási kimenet nem egyezik a gyártási utasítással" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Mennyiségnek nullánál többnek kell lennie" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "A mennyiség nem lehet több mint a gyártási mennyiség" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "A {serial} gyártási kimenet nem felelt meg az összes kötelező teszten" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "Gyártási Rendelés Sor Tétel" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Gyártás objektum" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Gyártás objektum" msgid "Quantity" msgstr "Mennyiség" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Gyártáshoz szükséges mennyiség" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Gyártási tételnek meg kell adnia a gyártási kimenetet, mivel a fő darab egyedi követésre kötelezett" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "A lefoglalt mennyiség ({q}) nem lépheti túl a szabad készletet ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Készlet túlfoglalva" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Lefoglalt mennyiségnek nullánál többnek kell lennie" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Egyedi követésre kötelezett tételeknél a menyiség 1 kell legyen" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "A készlet tétel nem egyezik az alkatrészjegyzékkel" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "A készlet tétel nem egyezik az alkatrészjegyzékkel" msgid "Stock Item" msgstr "Készlet tétel" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Forrás készlet tétel" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Készlet mennyiség amit foglaljunk a gyártáshoz" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Beépítés ebbe" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Cél készlet tétel" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "Gyártási Szint" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Alkatrész neve" @@ -1601,12 +1601,12 @@ msgid "Packaging" msgstr "Csomagolás" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Alkatrész ID" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "Alkatrész IPN" @@ -1668,13 +1668,13 @@ msgstr "Követésre kötelezett" msgid "Inherited" msgstr "Örökölt" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Változatok" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Alkatrészjegyzék tétel" @@ -2146,19 +2146,19 @@ msgstr "Befejezetlen kimenetek" msgid "Test Statistics" msgstr "Ellenőrzési Statisztika" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "Ez egy hivatkozás" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "Ez egy állomány" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "A felhasználó nem jogosult ezen mellékletek törlésére" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "A felhasználó nem jogosult ezen melléklet törlésére" @@ -2351,7 +2351,7 @@ msgstr "Milyen gyakran frissítse az árfolyamokat (nulla a kikapcsoláshoz)" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "nap" @@ -2579,7 +2579,7 @@ msgstr "Kategória paraméter sablonok másolása" msgid "Copy category parameter templates when creating a part" msgstr "Kategória paraméter sablonok másolása alkatrész létrehozásakor" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3248,488 +3248,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Belső eseményekre reagálás engedélyezése a pluginok számára" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Projektszámok engedélyezése" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Projektszámok használatának engedélyezése a projektek követéséhez" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Leltár funkció" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Leltár funkció engedélyezése a készlet mennyiség és érték számításhoz" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Külső helyek nélkül" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Külső helyek figyelmen kívül hagyása a leltár számításoknál" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Automatikus leltár időpontja" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Hány naponta történjen automatikus leltár (nulla egyenlő tiltva)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Riport törlési gyakoriság" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Régi leltár riportok törlése hány naponta történjen" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Felhasználók teljes nevének megjelenítése" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Felhasználói név helyett a felhasználók teljes neve jelenik meg" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "Teszt állomás adatok engedélyezése" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "Tesztállomás adatok gyűjtésének teszt eredménybe gyűjtésének engedélyezése" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Beállítások kulcs (egyedinek kell lennie, nem kis- nagybetű érzékeny" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Nem aktív alkatrészek elrejtése a kezdőlapon" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Értesítésre beállított alkatrészek megjelenítése" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Alkatrész értesítések megjelenítése a főoldalon" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Értesítésre beállított kategóriák megjelenítése" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Alkatrész kategória értesítések megjelenítése a főoldalon" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Legújabb alkatrészek megjelenítése" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Legújabb alkatrészek megjelenítése a főoldalon" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "Hibás alkatrészjegyzékek megjelenítése" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Jóváhagyásra váró alkatrészjegyzékek megjelenítése a főoldalon" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Legfrissebb készlet változások megjelenítése" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Legutóbb megváltozott alkatrészek megjelenítése a főoldalon" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Alacsony készlet megjelenítése" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Alacsony készletek megjelenítése a főoldalon" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Kimerült készlet megjelenítése" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Kimerült készletek megjelenítése a főoldalon" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Gyártáshoz szükséges készlet megjelenítése" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Gyártáshoz szükséges készletek megjelenítése a főoldalon" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Lejárt készlet megjelenítése" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Lejárt készletek megjelenítése a főoldalon" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Állott készlet megjelenítése" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Álló készletek megjelenítése a főoldalon" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Függő gyártások megjelenítése" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Folyamatban lévő gyártások megjelenítése a főoldalon" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Késésben lévő gyártások megjelenítése" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Késésben lévő gyártások megjelenítése a főoldalon" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Kintlévő beszerzési rendelések megjelenítése" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Kintlévő beszerzési rendelések megjelenítése a főoldalon" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Késésben lévő megrendelések megjelenítése" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Késésben lévő megrendelések megjelenítése a főoldalon" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Függő vevői rendelések megjelenítése" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Függő vevői rendelések megjelenítése a főoldalon" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Késésben lévő vevői rendelések megjelenítése" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Késésben lévő vevői rendelések megjelenítése a főoldalon" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Függő vevői szállítmányok megjelenítése" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Folyamatban lévő vevői szállítmányok megjelenítése a főoldalon" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Hírek megjelenítése" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Hírek megjelenítése a főoldalon" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Beágyazott címke megjelenítés" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "PDF címkék megjelenítése a böngészőben letöltés helyett" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Alapértelmezett címkenyomtató" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Melyik címkenyomtató legyen az alapértelmezett" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Beágyazott riport megjelenítés" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "PDF riport megjelenítése a böngészőben letöltés helyett" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Alkatrészek keresése" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Alkatrészek megjelenítése a keresési előnézetben" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Beszállítói alkatrészek keresése" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Beszállítói alkatrészek megjelenítése a keresési előnézetben" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Gyártói alkatrészek keresése" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Gyártói alkatrészek megjelenítése a keresési előnézetben" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Inaktív alkatrészek elrejtése" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Inaktív alkatrészek kihagyása a keresési előnézet találataiból" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Kategóriák keresése" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Alkatrész kategóriák megjelenítése a keresési előnézetben" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Készlet keresése" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Készlet tételek megjelenítése a keresési előnézetben" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Nem elérhető készlet tételek elrejtése" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Nem elérhető készlet kihagyása a keresési előnézet találataiból" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Helyek keresése" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Készlet helyek megjelenítése a keresési előnézetben" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Cégek keresése" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Cégek megjelenítése a keresési előnézetben" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Gyártási utasítások keresése" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Gyártási utasítások megjelenítése a keresés előnézet ablakban" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Beszerzési rendelések keresése" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Beszerzési rendelések megjelenítése a keresési előnézetben" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Inaktív beszerzési rendelések kihagyása" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inaktív beszerzési rendelések kihagyása a keresési előnézet találataiból" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Vevői rendelések keresése" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Vevői rendelések megjelenítése a keresési előnézetben" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Inaktív vevői rendelések kihagyása" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Inaktív vevői rendelések kihagyása a keresési előnézet találataiból" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Visszavétel keresése" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "Visszavételek megjelenítése a keresés előnézet ablakban" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "Inaktív visszavételek kihagyása" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "Inaktív visszavételek kihagyása a keresési előnézet találataiból" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Keresési előnézet eredményei" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "A keresési előnézetben megjelenítendő eredmények száma szekciónként" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Regex keresés" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Reguláris kifejezések engedélyezése a keresésekben" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Teljes szó keresés" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "A keresések csak teljes szóra egyező találatokat adjanak" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Mennyiség megjelenítése a formokon" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Rendelkezésre álló alkatrész mennyiség megjelenítése néhány formon" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "ESC billentyű zárja be a formot" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "ESC billentyű használata a modális formok bezárásához" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Rögzített menüsor" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "A menü pozíciója mindig rögzítve a lap tetején" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Dátum formátum" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Preferált dátum formátum a dátumok kijelzésekor" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Alkatrész ütemezés" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Alkatrész ütemezési információk megjelenítése" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Alkatrész leltár" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Alkatrész leltár információk megjelenítése (ha a leltár funkció engedélyezett)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Táblázati szöveg hossz" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "Maximális szöveg hossz ami megjelenhet a táblázatokban" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Hibariportok fogadása" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "Értesítések fogadása a rendszerhibákról" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "Utoljára használt nyomtató gépek" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "Az utoljára használt nyomtató tárolása a felhasználóhoz" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Felhasználó" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Ársáv mennyiség" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3737,96 +3745,96 @@ msgstr "Ársáv mennyiség" msgid "Price" msgstr "Ár" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Egységár egy meghatározott mennyiség esetén" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Végpont" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Végpont ahol ez a webhook érkezik" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Webhook neve" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Aktív-e ez a webhook" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "Token" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Token a hozzáféréshez" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Titok" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Megosztott titok a HMAC-hoz" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "Üzenet azonosító" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Egyedi azonosító ehhez az üzenethez" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Kiszolgáló" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Kiszolgáló ahonnan ez az üzenet érkezett" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Fejléc" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Üzenet fejléce" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Törzs" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Üzenet törzse" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Végpont amin ez az üzenet érkezett" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Dolgozott rajta" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "Befejeződött a munka ezzel az üzenettel?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "Azonosító" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Cím" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3843,28 +3851,28 @@ msgstr "Cím" msgid "Link" msgstr "Link" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Közzétéve" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Szerző" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Összefoglaló" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Elolvasva" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Elolvasva?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3874,186 +3882,186 @@ msgstr "Elolvasva?" msgid "Image" msgstr "Kép" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Képfájl" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "A képhez tartozó model típus" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "A képhez tartozó model azonosító" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "Egyedi mértékegység" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "A mértékegység szimbólumának egyedinek kell lennie" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "A mértékegységnek valós azonosítónak kell lennie" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Egység neve" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Szimbólum" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Opcionális mértékegység szimbólum" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definíció" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Mértékegység definíció" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Melléklet" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Hiányzó fájl" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Hiányzó külső link" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Válaszd ki a mellekelni kívánt fájlt" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Megjegyzés" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "Melléklet megjegyzés" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "Feltöltés dátuma" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "A fájl feltöltésének dátuma" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "Fájl mérete" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "Fájlméret bájtban" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "A melléklet model típusa érvénytelen" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Kulcs" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "A model adatbázisba tárolandó érték" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "Az állapot neve" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "Címke" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "A felületen megjelenített címke" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "Szín" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "A felöleten megjelenő szín" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "Logikai kulcs" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "Az állapot logikai kulcsa amely megegyezik az üzleti logika egyedi állapotával" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "Model" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "A Model amihez ez az állapot tartozik" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "Hivatkozott Állapot Készlet" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "Az az Állapot készlet, melyet ez az egyedi állapot kibővít" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "Egyedi Állapot" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "Egyedi Állapotok" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "Modelt választani kötelező" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "Kulcsot választani kötelező" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "Logikai kulcsot választani kötelező" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "A kulcs és a logikai kulcs nem lehet azonos" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "Kötelező kiválasztani a bővítendő állapotot" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "A hivatkozott állapot nem található" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "A kulcsnak eltérőnek kell lennie a hivatkozott állapotok logikai kulcsaitól" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "A logikai kulcsnak szerepelnie kell a hivatkozott állapotok logikai kulcsai közt" @@ -4091,75 +4099,75 @@ msgstr "Készlet érkezett vissza egy visszavétel miatt" msgid "Error raised by plugin" msgstr "Plugin hiba" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Folyamatban" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Folyamatban lévő feladatok" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Ütemezett Feladatok" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Hibás feladatok" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "Feladat ID" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "Egyedi feladat ID" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Zárol" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Zárolási idő" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Feladat neve" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Funkció" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Funkció neve" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Paraméterek" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Feladat paraméterei" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Kulcsszó paraméterek" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Feladat kulcsszó paraméterek" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Fájlnév" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "Modell típusa" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "A felhasználónak nincs joga létrehozni vagy módosítani ehhez a modelhez tartozó mellékleteket" @@ -4495,7 +4503,7 @@ msgid "Parameter name" msgstr "Paraméter neve" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4506,7 +4514,7 @@ msgid "Parameter value" msgstr "Paraméter értéke" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4581,7 +4589,7 @@ msgid "Supplier part description" msgstr "Beszállítói alkatrész leírása" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4593,11 +4601,11 @@ msgstr "Beszállítói alkatrész leírása" msgid "Note" msgstr "Megjegyzés" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "alap költség" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimális díj (pl. tárolási díj)" @@ -4619,7 +4627,7 @@ msgstr "Csomagolási mennyiség" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Egy csomagban kiszállítható mennyiség, hagyd üresen az egyedi tételeknél." -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "többszörös" @@ -5205,7 +5213,7 @@ msgstr "Sor száma" msgid "Original row data" msgstr "Eredeti sor adat" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Adat" @@ -6558,12 +6566,12 @@ msgstr "Felhasználva ebben" msgid "Building" msgstr "Gyártásban" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Minimum költség" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Maximum költség" @@ -6709,7 +6717,7 @@ msgstr "Vannak Változatok" msgid "BOM Valid" msgstr "Alkatrészjegyzék ellenőrizve" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6745,7 +6753,7 @@ msgstr "Teljes készlet" msgid "Input quantity for price calculation" msgstr "Add meg a mennyiséget az árszámításhoz" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Alkatrész kategória" @@ -6868,7 +6876,7 @@ msgstr "Ilyen nevű, IPN-ű és reviziójú alkatrész már létezik." msgid "Parts cannot be assigned to structural part categories!" msgstr "Szerkezeti kategóriákhoz nem lehet alkatrészeket rendelni!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Alkatrész neve" @@ -7007,159 +7015,159 @@ msgstr "Alkatrész felelőse" msgid "Last Stocktake" msgstr "Utolsó leltár" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Több értékesítése" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "Árszámítások gyorstárazásához használt pénznem" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Minimum alkatrészjegyzék költség" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "Összetevők minimum költsége" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Maximum alkatrészjegyzék költség" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "Összetevők maximum költsége" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "Minimum beszerzési ár" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "Eddigi minimum beszerzési költség" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "Maximum beszerzési ár" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "Eddigi maximum beszerzési költség" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "Minimum belső ár" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "Minimum költség a belső ársávok alapján" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "Maximum belső ár" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "Maximum költség a belső ársávok alapján" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "Minimum beszállítói ár" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "Minimum alkatrész ár a beszállítóktól" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "Maximum beszállítói ár" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "Maximum alkatrész ár a beszállítóktól" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "Minimum alkatrészváltozat ár" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "Alkatrészváltozatok számolt minimum költsége" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "Maximum alkatrészváltozat ár" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "Alkatrészváltozatok számolt maximum költsége" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "Minimum költség felülbírálása" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "Maximum költség felülbírálása" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "Számított általános minimum költség" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "Számított általános maximum költség" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "Minimum eladási ár" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "Minimum eladási ár az ársávok alapján" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "Maximum eladási ár" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "Maximum eladási ár az ársávok alapján" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Minimum eladási költség" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "Eddigi minimum eladási ár" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "Maximum eladási költség" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "Eddigi maximum eladási ár" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "Leltározható alkatrész" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Tételszám" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "Egyedi készlet tételek száma a leltárkor" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "Teljes készlet a leltárkor" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7171,363 +7179,363 @@ msgstr "Teljes készlet a leltárkor" msgid "Date" msgstr "Dátum" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "Leltározva ekkor" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "További megjegyzések" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "Leltározta" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Minimum készlet érték" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Becsült minimum raktárkészlet érték" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "Maximum készlet érték" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "Becsült maximum raktárkészlet érték" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Riport" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "Leltár riport fájl (generált)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Alkatrész szám" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "Leltározott alkatrészek száma" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "Felhasználó aki a leltár riportot kérte" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "Alkatrész értékesítési ársáv" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "Alkatrész Teszt Sablon" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "Hibás sablon név - legalább egy alfanumerikus karakter kötelező" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "A lehetőségek egyediek kell legyenek" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "Teszt sablont csak ellenőrizhetőre beállított alkatrészhez lehet csinálni" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "Már létezik ilyen azonosítójú Teszt sablon ehhez az alkatrészhez" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Teszt név" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Add meg a teszt nevét" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "Teszt azonosító" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "Egyszerűsített Teszt azonosító" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Teszt leírása" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Adj hozzá egy leírást ehhez a teszthez" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Engedélyezve" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "Teszt engedélyezve?" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Kötelező" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "Szükséges-e hogy ez a teszt sikeres legyen?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Kötelező érték" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "Szükséges-e hogy ennek a tesztnek az eredményéhez kötelezően érték legyen rendelve?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Kötelező melléklet" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "Szükséges-e hogy ennek a tesztnek az eredményéhez kötelezően fájl melléklet legyen rendelve?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Lehetőségek" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "Választható lehetőségek ehhez a Teszthez (vesszővel elválasztva)" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "Alkatrész Paraméter Sablon" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "Jelölőnégyzet paraméternek nem lehet mértékegysége" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "Jelölőnégyzet paraméternek nem lehetnek választási lehetőségei" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "A paraméter sablon nevének egyedinek kell lennie" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Paraméter neve" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "Paraméter mértékegysége" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "Paraméter leírása" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "Jelölőnégyzet" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "Ez a paraméter egy jelölőnégyzet?" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "Választható lehetőségek (vesszővel elválasztva)" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "Alkatrész Paraméter" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "Lezárt alkatrész Paramétere nem szerkeszthető" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "Hibás választás a paraméterre" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Szülő alkatrész" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Paraméter sablon" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Paraméter értéke" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "Alkatrészcsoport Paraméter Sablon" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Alapértelmezett érték" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Alapértelmezett paraméter érték" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "Alkatrész ID vagy alkatrész név" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Egyedi alkatrész ID értéke" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Alkatrész IPN érték" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Szint" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "Alkatrészjegyzék szint" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "Alkatrészjegyzék nem szerkeszthető mert az összeállítás le van zárva" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "Alkatrészjegyzék nem szerkeszthető mert az összeállítás változat le van zárva" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Szülő alkatrész kiválasztása" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Al alkatrész" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Válaszd ki az alkatrészjegyzékben használandó alkatrészt" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "Alkatrészjegyzék mennyiség ehhez az alkatrészjegyzék tételhez" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Ez az alkatrészjegyzék tétel opcionális" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Ez az alkatrészjegyzék tétel fogyóeszköz (készlete nincs követve a gyártásban)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Többlet" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Becsült gyártási veszteség (abszolút vagy százalékos)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "Alkatrészjegyzék tétel azonosító" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Alkatrészjegyzék tétel megjegyzései" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Ellenőrző összeg" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "Alkatrészjegyzék sor ellenőrző összeg" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Jóváhagyva" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "Ez a BOM tétel jóvá lett hagyva" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "Öröklődött" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Ezt az alkatrészjegyzék tételt az alkatrész változatok alkatrészjegyzékei is öröklik" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Alkatrészváltozatok készlet tételei használhatók ehhez az alkatrészjegyzék tételhez" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "A mennyiség egész szám kell legyen a követésre kötelezett alkatrészek esetén" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "Al alkatrészt kötelező megadni" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "Alkatrészjegyzék tétel helyettesítő" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "A helyettesítő alkatrész nem lehet ugyanaz mint a fő alkatrész" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Szülő alkatrészjegyzék tétel" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Helyettesítő alkatrész" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "1.rész" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "2.rész" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Válassz kapcsolódó alkatrészt" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "Alkatrész kapcsolat nem hozható létre önmagával" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "Már létezik duplikált alkatrész kapcsolat" @@ -8594,7 +8602,7 @@ msgstr "Az alkatrész képe nem található" msgid "Part Pricing" msgstr "Alkatrész árak" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "Plugin nem törölhető mivel még aktív" @@ -9002,44 +9010,44 @@ msgstr "TME vonalkódok támogatása" msgid "The Supplier which acts as 'TME'" msgstr "A 'TME' beszállító" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "Csak a személyzeti felhasználók adminisztrálhatják a pluginokat" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "Plugin telepítés letiltva" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "Plugin telepítése sikeres" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "Plugin telepítve ide: {path}" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "Ez a plugin nem található a tárolóban" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "A plugin nem egy csomagolt plugin" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "Plugin csomag neve nem található" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "Plugin eltávolítás letiltva" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "Plugin nem eltávolítható mivel még aktív" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "Plugin eltávolítása sikeres" @@ -9157,6 +9165,38 @@ msgstr "Minta árfolyamváltó plugin" msgid "InvenTree Contributors" msgstr "InvenTree fejlesztők" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "Forrás URL" @@ -9235,6 +9275,30 @@ msgstr "Konfiguráció törlése" msgid "Delete the plugin configuration from the database" msgstr "Plugin konfiguráció törlése az adatbázisból" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Nincs érvényes objektum megadva a sablonhoz" @@ -9519,7 +9583,7 @@ msgstr "Teszt eredmények" msgid "Test" msgstr "Teszt" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Eredmény" @@ -9893,7 +9957,7 @@ msgstr "A mennyiség nem egyezik a megadott sorozatszámok számával" msgid "Serial numbers already exist" msgstr "A sorozatszámok már léteznek" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "Ez a Teszt sablon nem létezik" @@ -9941,67 +10005,67 @@ msgstr "Készlet tételek állapotainak egyeznie kell" msgid "StockItem cannot be moved as it is not in stock" msgstr "Készlet tétel nem mozgatható mivel nincs készleten" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "Készlettörténet" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Bejegyzés megjegyzései" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "Készlet Tétel Ellenőrzés Eredménye" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Ehhez a teszthez meg kell adni értéket" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "Ehhez a teszthez fel kell tölteni mellékletet" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "A teszt eredménye érvénytelen" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Teszt eredménye" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Teszt kimeneti értéke" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Teszt eredmény melléklet" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Tesztek megjegyzései" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "Teszt állomás" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "A tesztet elvégző tesztállomás azonosítója" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "Elkezdődött" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "A teszt indításának időpontja" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "Befejezve" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "A teszt befejezésének időpontja" diff --git a/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po index 9f7f9029a6..b467d84c87 100644 --- a/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/id/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -65,9 +65,9 @@ msgstr "Masukkan tanggal" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "Pilihan tidak valid" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nama" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Terjadi Kesalahan Server" msgid "An error has been logged by the server." msgstr "Sebuah kesalahan telah dicatat oleh server." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Harus berupa angka yang valid" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "Nama Pengguna" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Nama Depan" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Nama depan dari pengguna" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Nama Belakang" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Nama belakang dari pengguna" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Alamat surel dari pengguna" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Staf" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "Aktif" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Selamat Datang di InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Nilai tidak valid" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "File data" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Pilih file untuk diunggah" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Jenis file tidak didukung" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Ukuran file terlalu besar" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Tidak ditemukan kolom dalam file" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Tidak ditemukan barisan data dalam file" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Tidak ada barisan data tersedia" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Tidak ada kolom data tersedia" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Kolom yang diperlukan kurang: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Kolom duplikat: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL file gambar external" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Unduhan gambar dari URL external tidak aktif" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Pesanan harus dibatalkan sebelum dapat dihapus" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Pesanan harus dibatalkan sebelum dapat dihapus" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "Tersedia" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Tersedia" msgid "Build Order" msgstr "Order Produksi" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Referensi Order Produksi" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Produksi induk dari produksi ini" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "Tautan eksternal" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Tautan menuju URL eksternal" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Tidak ada hasil produksi yang ditentukan" @@ -1122,37 +1122,37 @@ msgstr "Hasil produksi sudah selesai" msgid "Build output does not match Build Order" msgstr "Hasil produksi tidak sesuai dengan order produksi" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Jumlah harus lebih besar daripada nol" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "Jumlah" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item produksi harus menentukan hasil produksi karena bagian utama telah ditandai sebagai dapat dilacak" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Item stok teralokasikan terlalu banyak" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Jumlah yang dialokasikan harus lebih dari nol" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Jumlah harus 1 untuk stok dengan nomor seri" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "Stok Item" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Sumber stok item" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Jumlah stok yang dialokasikan ke produksi" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Pasang ke" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Tujuan stok item" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Item tagihan material" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "Hari" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Cari barang" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Cari Persediaan" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Cari Lokasi" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Cari Perusahaan" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Pengguna" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "Harga" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Judul" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Judul" msgid "Link" msgstr "Tautan" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Kesimpulan" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Berkas Gambar" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Lampiran" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "File tidak ditemukan" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Tautan eksternal tidak ditemukan" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Pilih file untuk dilampirkan" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentar" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "Ukuran Berkas" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "Label" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "Model" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Nama File" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "Tanggal" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Lapor" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Aktif" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Pilihan" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "Kontributor InvenTree" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "Lampiran perlu diunggah untuk tes ini" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po index 84d370ceb5..9b5f4f0963 100644 --- a/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/it/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -65,9 +65,9 @@ msgstr "Inserisci la data" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -126,7 +126,7 @@ msgstr "È necessario digitare la stessa e-mail ogni volta." #: InvenTree/forms.py:221 msgid "MFA Registration is disabled." -msgstr "" +msgstr "La registrazione MFA è disabilitata." #: InvenTree/forms.py:259 InvenTree/forms.py:267 msgid "The provided primary email address is not valid." @@ -364,7 +364,7 @@ msgstr "Cinese (Tradizionale)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Accedi all'app" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Nomi duplicati non possono esistere sotto lo stesso genitore" msgid "Invalid choice" msgstr "Scelta non valida" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nome" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Errore del server" msgid "An error has been logged by the server." msgstr "Un errore è stato loggato dal server." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Deve essere un numero valido" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Selezionare la valuta dalle opzioni disponibili" msgid "Username" msgstr "Nome utente" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Nome" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Nome dell'utente" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Cognome" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Cognome dell'utente" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Indirizzo email dell'utente" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Staff" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Questo utente ha i permessi dello staff" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Superuser" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Questo utente è un superutente" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Questo utente è un superutente" msgid "Active" msgstr "Attivo" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Questo account utente è attivo" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Non hai i permessi per cambiare il ruolo dell'utente." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Solo i superutenti possono creare nuovi utenti" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Il tuo account è stato creato." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Si prega di utilizzare la funzione di reset password per accedere" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Benvenuto in InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Valore non valido" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "File dati" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Seleziona un file per il caricamento" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Formato file non supportato" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "File troppo grande" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Nessun colonna trovata nel file" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Nessuna riga di dati trovata nel file" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Nessun dato fornito" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Nessuna colonna di dati fornita" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Colonna richiesta mancante: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Colonna duplicata: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Immagine Remota" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL del file immagine remota" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Il download delle immagini da URL remoto non è abilitato" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "La produzione deve essere annullata prima di poter essere eliminata" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "La produzione deve essere annullata prima di poter essere eliminata" msgid "Consumable" msgstr "Consumabile" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Allocato" msgid "Available" msgstr "Disponibile" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Disponibile" msgid "Build Order" msgstr "Ordine di Produzione" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Riferimento Ordine Di Produzione" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Ordine di produzione a cui questa produzione viene assegnata" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Utente o gruppo responsabile di questo ordine di produzione" msgid "External Link" msgstr "Collegamento esterno" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link a URL esterno" @@ -1110,7 +1110,7 @@ msgstr "L'ordine di produzione {build} è stato completato" msgid "A build order has been completed" msgstr "L'ordine di produzione è stato completato" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Nessun output di produzione specificato" @@ -1122,37 +1122,37 @@ msgstr "La produzione è stata completata" msgid "Build output does not match Build Order" msgstr "L'output della produzione non corrisponde all'ordine di compilazione" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "La quantità deve essere maggiore di zero" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "La quantità non può essere maggiore della quantità in uscita" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Crea oggetto" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Crea oggetto" msgid "Quantity" msgstr "Quantità" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Quantità richiesta per l'ordine di costruzione" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "L'elemento di compilazione deve specificare un output poiché la parte principale è contrassegnata come rintracciabile" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "La quantità assegnata ({q}) non deve essere maggiore della quantità disponibile ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "L'articolo in giacenza è sovrallocato" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "La quantità di assegnazione deve essere maggiore di zero" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "La quantità deve essere 1 per lo stock serializzato" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "L'articolo in stock selezionato non corrisponde alla voce nella BOM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "L'articolo in stock selezionato non corrisponde alla voce nella BOM" msgid "Stock Item" msgstr "Articoli in magazzino" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Origine giacenza articolo" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Quantità di magazzino da assegnare per la produzione" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Installa in" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Destinazione articolo in giacenza" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Nome Articolo" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Confezionamento" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Codice Articolo" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "IPN Articolo" @@ -1667,13 +1667,13 @@ msgstr "Tracciabile" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Consenti Le Varianti" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Distinta base (Bom)" @@ -2145,19 +2145,19 @@ msgstr "Output Incompleti" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "giorni" @@ -2578,7 +2578,7 @@ msgstr "Copia Template Parametri Categoria" msgid "Copy category parameter templates when creating a part" msgstr "Copia i modelli dei parametri categoria quando si crea un articolo" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Abilita plugin per rispondere agli eventi interni" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Funzionalità Dell'Inventario" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Abilita la funzionalità d'inventario per la registrazione dei livelli di magazzino e il calcolo del valore di magazzino" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Inventario periodico automatico" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Numero di giorni tra la registrazione automatica dell'inventario (imposta 0 per disabilitare)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "I rapporti d'inventario verranno eliminati dopo il numero specificato di giorni" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Tasto impostazioni (deve essere univoco - maiuscole e minuscole" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Nascondi Articoli Inattivi" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Mostra articoli sottoscritti" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Mostra gli articoli sottoscritti nella homepage" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Mostra le categorie sottoscritte" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Mostra le categorie dei componenti sottoscritti nella homepage" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Mostra ultimi articoli" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Mostra gli ultimi articoli sulla homepage" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Mostra le distinte base che attendono la convalida sulla homepage" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Mostra le modifiche recenti alle giacenze" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Mostra le giacenze modificate di recente nella homepage" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Mostra disponibilità scarsa delle giacenze" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Mostra disponibilità scarsa degli articoli sulla homepage" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Mostra scorte esaurite" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Mostra disponibilità scarsa delle scorte degli articoli sulla homepage" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Mostra scorte necessarie" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Mostra le scorte degli articoli necessari per la produzione sulla homepage" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Mostra scorte esaurite" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Mostra gli articoli stock scaduti nella home page" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Mostra scorte obsolete" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Mostra gli elementi obsoleti esistenti sulla home page" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Mostra produzioni in attesa" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Mostra produzioni in attesa sulla homepage" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Mostra produzioni in ritardo" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Mostra produzioni in ritardo sulla home page" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Mostra ordini di produzione inevasi" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Mostra ordini di produzione inevasi sulla home page" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Mostra Ordini di Produzione in ritardo" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Mostra Ordini di Produzione in ritardo sulla home page" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Mostra Ordini di Vendita inevasi" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Mostra Ordini di Vendita inevasi sulla home page" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Mostra Ordini di Vendita in ritardo" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Mostra Ordini di Vendita in ritardo sulla home page" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Mostra Notizie" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Mostra notizie sulla home page" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Visualizza le etichette PDF nel browser, invece di scaricare come file" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Stampante per etichette predefinita" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Configura quale stampante di etichette deve essere selezionata per impostazione predefinita" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Visualizzazione dell'etichetta in linea" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Visualizza le etichette PDF nel browser, invece di scaricare come file" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Cerca Articoli" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Mostra articoli della ricerca nella finestra di anteprima" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Mostra articoli del fornitore nella finestra di anteprima" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Cerca Articoli Produttore" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Mostra articoli del produttore nella finestra di anteprima" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Nascondi Articoli Inattivi" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Escludi articoli inattivi dalla finestra di anteprima della ricerca" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Cerca Categorie" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Mostra categorie articolo nella finestra di anteprima di ricerca" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Cerca Giacenze" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Mostra articoli in giacenza nella finestra di anteprima della ricerca" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Nascondi elementi non disponibili" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Escludi gli elementi stock che non sono disponibili dalla finestra di anteprima di ricerca" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Cerca Ubicazioni" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Mostra ubicazioni delle giacenze nella finestra di anteprima di ricerca" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Cerca Aziende" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Mostra le aziende nella finestra di anteprima di ricerca" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Cerca Ordini Di Produzione" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Mostra gli ordini di produzione nella finestra di anteprima di ricerca" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Cerca Ordini di Acquisto" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Mostra gli ordini di acquisto nella finestra di anteprima di ricerca" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Escludi Ordini D'Acquisto Inattivi" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Escludi ordini di acquisto inattivi dalla finestra di anteprima di ricerca" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Cerca Ordini Di Vendita" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Visualizzazione degli ordini di vendita nella finestra di anteprima della ricerca" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Escludi Ordini Di Vendita Inattivi" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Escludi ordini di vendita inattivi dalla finestra di anteprima di ricerca" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Cerca Ordini Di Reso" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Risultati Dell'Anteprima Di Ricerca" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Numero di risultati da visualizzare in ciascuna sezione della finestra di anteprima della ricerca" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Ricerca con regex" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Mostra quantità nei moduli" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Visualizzare la quantità di pezzi disponibili in alcuni moduli" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Il tasto Esc chiude i moduli" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Utilizzare il tasto Esc per chiudere i moduli modali" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Barra di navigazione fissa" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "La posizione della barra di navigazione è fissata nella parte superiore dello schermo" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Formato Data" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Formato predefinito per visualizzare le date" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Programmazione Prodotto" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Mostra informazioni sulla pianificazione del prodotto" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Inventario Prodotto" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Visualizza le informazioni d'inventario dell'articolo (se la funzionalità d'inventario è abilitata)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Lunghezza Stringa Tabella" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Utente" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Quantità prezzo limite" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "Quantità prezzo limite" msgid "Price" msgstr "Prezzo" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Prezzo unitario in quantità specificata" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Scadenza" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Scadenza in cui questa notifica viene ricevuta" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Nome per questa notifica" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "È questa notifica attiva" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Token per l'accesso" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Segreto" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Segreto condiviso per HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "ID Messaggio" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Identificatore unico per questo messaggio" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Host da cui questo messaggio è stato ricevuto" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Intestazione" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Intestazione di questo messaggio" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Contenuto" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Contenuto di questo messaggio" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Scadenza in cui questo messaggio è stato ricevuto" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Lavorato il" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "Il lavoro su questo messaggio è terminato?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titolo" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Titolo" msgid "Link" msgstr "Collegamento" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Pubblicato" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autore" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Riepilogo" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Letto" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Queste notizie sull'elemento sono state lette?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "Queste notizie sull'elemento sono state lette?" msgid "Image" msgstr "Immagine" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "File immagine" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Allegato" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "File mancante" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Link esterno mancante" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Seleziona file da allegare" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Commento" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "Errore generato dal plugin" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Nome del file" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Nome parametro" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Valore del parametro" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Descrizione articolo fornitore" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Descrizione articolo fornitore" msgid "Note" msgstr "Nota" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "costo base" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Onere minimo (ad esempio tassa di stoccaggio)" @@ -4618,7 +4626,7 @@ msgstr "Quantità Confezione" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "multiplo" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Dati" @@ -6557,12 +6565,12 @@ msgstr "Utilizzato In" msgid "Building" msgstr "In Costruzione" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Costo Minimo" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Costo Massimo" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Giacenze Totali" msgid "Input quantity for price calculation" msgstr "Digita la quantità per il calcolo del prezzo" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Categoria Articoli" @@ -6867,7 +6875,7 @@ msgstr "Un articolo con questo Nome, IPN e Revisione esiste già." msgid "Parts cannot be assigned to structural part categories!" msgstr "Gli articoli non possono essere assegnati a categorie articolo principali!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Nome articolo" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "Ultimo Inventario" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Vendita multipla" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "Valuta utilizzata per calcolare i prezzi" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Costo Minimo Distinta Base" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "Costo minimo dei componenti dell'articolo" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Costo Massimo Distinta Base" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "Costo massimo dei componenti dell'articolo" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "Importo Acquisto Minimo" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "Costo minimo di acquisto storico" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "Importo massimo acquisto" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "Costo massimo di acquisto storico" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "Prezzo Interno Minimo" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "Costo minimo basato su interruzioni di prezzo interne" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "Prezzo Interno Massimo" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "Costo massimo basato su interruzioni di prezzo interne" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "Prezzo Minimo Fornitore" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "Prezzo minimo articolo da fornitori esterni" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "Prezzo Massimo Fornitore" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "Prezzo massimo dell'articolo proveniente da fornitori esterni" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "Variazione di costo minimo" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "Costo minimo calcolato di variazione dell'articolo" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "Massima variazione di costo" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "Costo massimo calcolato di variazione dell'articolo" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "Costo minimo totale calcolato" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "Costo massimo totale calcolato" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "Prezzo Di Vendita Minimo" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "Prezzo minimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "Prezzo Di Vendita Massimo" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "Prezzo massimo di vendita basato sulle interruzioni di prezzo" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "Prezzo storico minimo di vendita" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "Costo Di Vendita Minimo" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "Prezzo storico massimo di vendita" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "Articolo per l'inventario" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Contatore Elemento" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "Numero di scorte individuali al momento dell'inventario" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "Totale delle scorte disponibili al momento dell'inventario" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "Totale delle scorte disponibili al momento dell'inventario" msgid "Date" msgstr "Data" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "Data in cui è stato effettuato l'inventario" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Note aggiuntive" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "Utente che ha eseguito questo inventario" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Costo Minimo Scorta" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Costo minimo stimato di magazzino a disposizione" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "Costo Massimo Scorte" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "Costo massimo stimato di magazzino a disposizione" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "File Report Inventario (generato internamente)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Conteggio Articolo" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "Numero di articoli oggetto d'inventario" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "Utente che ha richiesto questo report inventario" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Nome Test" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Inserisci un nome per la prova" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Descrizione Di Prova" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Inserisci descrizione per questa prova" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Abilitato" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Richiesto" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "Questa prova è necessaria per passare?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Valore richiesto" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "Questa prova richiede un valore quando si aggiunge un risultato di prova?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Allegato Richiesto" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "Questa prova richiede un file allegato quando si aggiunge un risultato di prova?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "Il nome del modello del parametro deve essere univoco" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Nome Parametro" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "Descrizione del parametro" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Articolo principale" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Modello Parametro" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Valore del Parametro" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Valore Predefinito" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Valore Parametro Predefinito" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "ID articolo o nome articolo" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Valore ID articolo univoco" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Valore IPN articolo" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Livello" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "Livello distinta base" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Seleziona articolo principale" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Articolo subordinato" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Seleziona l'articolo da utilizzare nella Distinta Base" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "Quantità Distinta Base per questo elemento Distinta Base" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Questo elemento della Distinta Base è opzionale" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Questo elemento della Distinta Base è consumabile (non è tracciato negli ordini di produzione)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Eccedenza" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Quantità stimata scarti di produzione (assoluta o percentuale)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "Riferimento Elemento Distinta Base" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Note Elemento Distinta Base" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Codice di controllo" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "Codice di controllo Distinta Base" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Convalidato" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Questo elemento della Distinta Base viene ereditato dalle Distinte Base per gli articoli varianti" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Gli elementi in giacenza per gli articoli varianti possono essere utilizzati per questo elemento Distinta Base" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "La quantità deve essere un valore intero per gli articoli rintracciabili" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "L'articolo subordinato deve essere specificato" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "Elemento Distinta Base Sostituito" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "La parte sostituita non può essere la stessa dell'articolo principale" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Elemento principale Distinta Base" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Sostituisci l'Articolo" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Articolo 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Articolo 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Seleziona Prodotto Relativo" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "Non si può creare una relazione tra l'articolo e sé stesso" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "La relazione duplicata esiste già" @@ -8593,7 +8601,7 @@ msgstr "Immagine articolo non trovata" msgid "Part Pricing" msgstr "Prezzo Articolo" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "URL di origine" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Nessun oggetto valido fornito nel modello" @@ -9518,7 +9582,7 @@ msgstr "Risultati Test" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Risultato" @@ -9892,7 +9956,7 @@ msgstr "La quantità non corrisponde ai numeri di serie" msgid "Serial numbers already exist" msgstr "Numeri di serie già esistenti" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "I codici di stato dello stock devono corrispondere" msgid "StockItem cannot be moved as it is not in stock" msgstr "Le giacenze non possono essere spostate perché non disponibili" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Note d'ingresso" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Il valore deve essere fornito per questo test" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "L'allegato deve essere caricato per questo test" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Risultato Test" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Test valore output" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Risultato della prova allegato" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Note del test" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po index 13540f47ff..c5234cc85c 100644 --- a/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ja/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -65,9 +65,9 @@ msgstr "日付を入力する" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "無効な選択です" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "お名前" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "有効な数字でなければなりません" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "利用可能なオプションから通貨を選択してください" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "このユーザのロールを変更する権限がありません" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "無効な値です。" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "データファイル" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "アップロードするファイルを選択" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "サポートされていないファイル形式" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "ファイルサイズが大きすぎます" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "ファイルに列が見つかりません" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "ファイルにデータ行がみつかりません" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "データが入力されていません" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "データ列が指定されていません" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "必須の列がありません: {name}" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "{col} 列が重複しています。" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "外部画像ファイルのURL" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "外部URLからの画像ダウンロードは許可されていません" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "組立注文" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "外部リンク" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "外部 サイト へのリンク" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "数量" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "在庫商品" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "追跡可能" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "非アクティブな部品を非表示" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "購読中の部品を表示" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "購読中のカテゴリを表示" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "ユーザー" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "メッセージ ID:" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "リンク" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "添付ファイル" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "ファイルがありません" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "外部リンクが見つかりません。" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "添付ファイルを選択" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "コメント:" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "ファイル名" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "パーツカテゴリ" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "シリアル番号が既に存在します" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po index 9602415657..d686591f34 100644 --- a/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ko/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -65,9 +65,9 @@ msgstr "" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po index 1354bcb66d..11096871dd 100644 --- a/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/lv/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -65,9 +65,9 @@ msgstr "Ievadiet datumu" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po index 90302d88b8..c9bd436d29 100644 --- a/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/nl/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -65,9 +65,9 @@ msgstr "Voer datum in" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Chinees (traditioneel)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Log in bij de app" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Dubbele namen kunnen niet bestaan onder hetzelfde bovenliggende object" msgid "Invalid choice" msgstr "Ongeldige keuze" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Naam" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Serverfout" msgid "An error has been logged by the server." msgstr "Er is een fout gelogd door de server." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Moet een geldig nummer zijn" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Selecteer valuta uit beschikbare opties" msgid "Username" msgstr "Gebruikersnaam" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Voornaam :" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Voornaam van de gebruiker" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Achternaam" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Achternaam van de gebruiker" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "E-mailadres van de gebruiker" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Medewerkers" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Heeft deze gebruiker medewerker machtigingen" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Administrator " -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Is deze gebruiker een administrator " -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Is deze gebruiker een administrator " msgid "Active" msgstr "Actief" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Is dit gebruikersaccount actief" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Je bent niet bevoegd om deze gebruikersrol te wijzigen." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Alleen administrators kunnen nieuwe gebruikers aanmaken" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Je account is aangemaakt." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Gebruik de wachtwoordreset functie om in te loggen" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Welkom bij InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Ongeldige waarde" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Data bestand" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Selecteer een bestand om te uploaden" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Niet ondersteund bestandstype" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Bestand is te groot" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Geen kolommen gevonden in het bestand" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Geen data rijen gevonden in dit bestand" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Geen data rijen opgegeven" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Geen gegevenskolommen opgegeven" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Verplichte kolom ontbreekt: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Dubbele kolom: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Externe afbeelding" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL van extern afbeeldingsbestand" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Afbeeldingen van externe URL downloaden is niet ingeschakeld" @@ -759,7 +759,7 @@ msgstr "Toegewezen aan" msgid "Build must be cancelled before it can be deleted" msgstr "Productie moet geannuleerd worden voordat het kan worden verwijderd" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Productie moet geannuleerd worden voordat het kan worden verwijderd" msgid "Consumable" msgstr "Verbruiksartikelen" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Toegewezen" msgid "Available" msgstr "Beschikbaar" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Beschikbaar" msgid "Build Order" msgstr "Productieorder" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Productieorderreferentie" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Productieorder waar deze productie aan is toegewezen" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Gebruiker of groep verantwoordelijk voor deze bouwopdracht" msgid "External Link" msgstr "Externe Link" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link naar externe URL" @@ -1110,7 +1110,7 @@ msgstr "Productieorder {build} is voltooid" msgid "A build order has been completed" msgstr "Een productieorder is voltooid" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Geen productie uitvoer opgegeven" @@ -1122,37 +1122,37 @@ msgstr "Productie uitvoer is al voltooid" msgid "Build output does not match Build Order" msgstr "Productuitvoer komt niet overeen met de Productieorder" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Hoeveelheid moet groter zijn dan nul" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Hoeveelheid kan niet groter zijn dan aantal" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Bouw object" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Bouw object" msgid "Quantity" msgstr "Hoeveelheid" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Vereiste hoeveelheid voor bouwopdracht" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Productieartikel moet een productieuitvoer specificeren, omdat het hoofdonderdeel gemarkeerd is als traceerbaar" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Toegewezen hoeveelheid ({q}) mag de beschikbare voorraad ({a}) niet overschrijden" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Voorraad item is te veel toegewezen" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Toewijzing hoeveelheid moet groter zijn dan nul" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Hoeveelheid moet 1 zijn voor geserialiseerde voorraad" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Geselecteerde voorraadartikelen komen niet overeen met de BOM-regel" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Geselecteerde voorraadartikelen komen niet overeen met de BOM-regel" msgid "Stock Item" msgstr "Voorraadartikel" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Bron voorraadartikel" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Voorraad hoeveelheid toe te wijzen aan productie" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Installeren in" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Bestemming voorraadartikel" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Onderdeel naam" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Verpakking" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Onderdeel-id" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "Volgbaar" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Stuklijstartikel" @@ -2145,19 +2145,19 @@ msgstr "Onvolledige Productieuitvoeren" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "dagen" @@ -2578,7 +2578,7 @@ msgstr "Kopiëer Categorieparameter Sjablonen" msgid "Copy category parameter templates when creating a part" msgstr "Kopieer categorieparameter sjablonen bij het aanmaken van een onderdeel" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Activeer plugin om op interne evenementen te reageren" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Activeer project codes" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Activeer project codes voor het bijhouden van projecten" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Voorraadcontrole functionaliteit" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Schakel voorraadfunctionaliteit in voor het opnemen van voorraadniveaus en het berekenen van voorraadwaarde" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Externe locaties uitsluiten" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Voorraadartikelen op externe locaties uitsluiten van voorraadberekeningen" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Automatische Voorraadcontrole Periode" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Aantal dagen tussen automatische voorraadopname (ingesteld op nul om uit te schakelen)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Rapport Verwijdering Interval" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Voorraadrapportage zal worden verwijderd na het opgegeven aantal dagen" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Instellingssleutel (moet uniek zijn - hoofdletter ongevoelig" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Inactieve Onderdelen Verbergen" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Verberg inactieve delen bij items op de homepage" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Toon geabonneerde onderdelen" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Toon geabonneerde onderdelen op de homepage" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Toon geabonneerde categorieën" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Toon geabonneerde onderdeel categorieën op de startpagina" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Toon laatste onderdelen" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Toon laatste onderdelen op de startpagina" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Laat BOMs zien die wachten op validatie op de startpagina" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Toon recente voorraadwijzigingen" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Toon recent aangepaste voorraadartikelen op de startpagina" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Toon lage voorraad" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Toon lage voorraad van artikelen op de startpagina" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Toon lege voorraad" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Toon lege voorraad van artikelen op de startpagina" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Toon benodigde voorraad" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Toon benodigde voorraad van artikelen voor productie op de startpagina" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Toon verlopen voorraad" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Toon verlopen voorraad van artikelen op de startpagina" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Toon verouderde voorraad" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Toon verouderde voorraad van artikelen op de startpagina" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Toon openstaande producties" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Toon openstaande producties op de startpagina" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Toon achterstallige productie" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Toon achterstallige producties op de startpagina" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Toon uitstaande PO's" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Toon uitstaande PO's op de startpagina" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Toon achterstallige PO's" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Toon achterstallige PO's op de startpagina" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Toon uitstaande SO's" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Toon uitstaande SO's op de startpagina" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Toon achterstallige SO's" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Toon achterstallige SO's op de startpagina" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Toon in behandeling SO verzendingen" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Toon in behandeling zijnde SO verzendingen op de startpagina" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Nieuws tonen" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Nieuws op de startpagina weergeven" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Inline labelweergave" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "PDF-labels in browser weergeven, in plaats van als bestand te downloaden" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Standaard label printer" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Instellen welke label printer standaard moet worden geselecteerd" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Inline rapport weergeven" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "PDF-rapporten in de browser weergeven, in plaats van als bestand te downloaden" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Zoek Onderdelen" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Onderdelen weergeven in zoekscherm" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Zoek leveranciersonderdelen" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Leveranciersonderdelen weergeven in zoekscherm" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Fabrikant onderdelen zoeken" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Fabrikant onderdelen weergeven in zoekscherm" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Inactieve Onderdelen Verbergen" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Zoek categorieën" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Toon onderdeelcategorieën in zoekvenster" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Zoek in Voorraad" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Toon voorraad items in zoekvenster" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Verberg niet beschikbare voorraad items" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Voorraadartikelen die niet beschikbaar zijn niet in het zoekvenster weergeven" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Locaties doorzoeken" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Toon voorraadlocaties in zoekvenster" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Zoek bedrijven" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Toon bedrijven in zoekvenster" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Zoek Bouworders" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Toon bouworders in zoekvenster" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Inkooporders Zoeken" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Toon inkooporders in het zoekvenster" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Inactieve Inkooporders Weglaten" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Inactieve inkooporders weglaten in het zoekvenster" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Verkooporders zoeken" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Toon verkooporders in het zoekvenster" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Inactieve Verkooporders Weglaten" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Inactieve verkooporders weglaten in het zoekvenster" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Zoek retourorders" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "Toon bouworders in zoekvenster" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "Inactieve retourbestellingen weglaten" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "Inactieve retourorders uitsluiten in zoekvenster" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Zoekvoorbeeld resultaten" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Aantal resultaten om weer te geven in elk gedeelte van het zoekvenster" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Regex zoeken" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Schakel reguliere expressies in zoekopdrachten in" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Hele woorden zoeken" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "Zoekopdrachten geven resultaat voor hele woord overeenkomsten" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Toon hoeveelheid in formulieren" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Hoeveelheid beschikbare onderdelen in sommige formulieren weergeven" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Escape-toets sluit formulieren" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Gebruik de Escape-toets om standaard formulieren te sluiten" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Vaste navigatiebalk" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "De navigatiebalk positie is gefixeerd aan de bovenkant van het scherm" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Datum formaat" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Voorkeursindeling voor weergave van datums" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Onderdeel planning" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Toon informatie voor het plannen van onderdelen" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Voorraadcontrole onderdeel" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Toon voorraadinformatie van onderdeel (als voorraadcontrole functionaliteit is ingeschakeld)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Tabel tekenreekslengte" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Foutrapportages ontvangen" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "Meldingen ontvangen van systeemfouten" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Gebruiker" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "Prijs" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Eindpunt" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Eindpunt waarop deze webhook wordt ontvangen" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Naam van deze webhook" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Is deze webhook actief" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Token voor toegang" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Geheim" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Gedeeld geheim voor HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "Bericht ID" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Koptekst" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Koptekst van dit bericht" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Berichtinhoud" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Inhoud van dit bericht" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Aan gewerkt" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Titel" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Titel" msgid "Link" msgstr "Koppeling" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Gepubliceerd" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Samenvatting" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Gelezen" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "Afbeelding" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Afbeelding" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbool" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definitie" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Bijlage" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Ontbrekend bestand" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Externe link ontbreekt" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Bestand als bijlage selecteren" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Opmerking" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "Label" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Bestandsnaam" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Parameternaam" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Parameterwaarde" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "Opmerking" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "basisprijs" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimale kosten (bijv. voorraadkosten)" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "meerdere" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "Bouwen" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Totale Voorraad" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Onderdeel Categorie" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Onderdeel naam" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "Laatste voorraadcontrole" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "Onderdeel voor voorraadcontrole" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "Aantal individuele voorraadvermeldingen op het moment van voorraadcontrole" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "Totale voorraad op het moment van voorraadcontrole" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "Totale voorraad op het moment van voorraadcontrole" msgid "Date" msgstr "Datum" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "Datum waarop voorraad werd uitgevoerd" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "Gebruiker die deze voorraad heeft uitgevoerd" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Minimale voorraadprijs" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Geschatte minimum kosten van de voorraad op de hand" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "Maximale voorraadkosten" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "Geschatte maximale kosten van de hand van voorraad" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "Bestand voorraadcontrole (intern gegenereerd)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Aantal onderdelen" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "Aantal door voorraadopname gedekte onderdelen" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "Gebruiker die om dit voorraadrapport heeft gevraagd" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "Test sjablonen kunnen alleen worden gemaakt voor testbare onderdelen" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Ingeschakeld" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "De template van de parameter moet uniek zijn" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Parameternaam" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Parameterwaarde" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Standaard Parameter Waarde" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Voorraaditems voor variant onderdelen kunnen worden gebruikt voor dit BOM artikel" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "Hoeveelheid moet een geheel getal zijn voor trackable onderdelen" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "Afbeelding van onderdeel niet gevonden" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "Test" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Resultaat" @@ -9892,7 +9956,7 @@ msgstr "Hoeveelheid komt niet overeen met serienummers" msgid "Serial numbers already exist" msgstr "Serienummers bestaan al" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "Testsjabloon bestaat niet" @@ -9940,67 +10004,67 @@ msgstr "De voorraad statuscodes moeten overeenkomen" msgid "StockItem cannot be moved as it is not in stock" msgstr "Voorraadartikel kan niet worden verplaatst omdat het niet op voorraad is" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "Voorraad item volgen" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Item notities" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Waarde moet voor deze test worden opgegeven" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "Bijlage moet worden geüpload voor deze test" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "Ongeldige waarde voor deze test" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Test resultaat" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Test uitvoer waarde" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Test resultaat bijlage" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Test notities" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "Test station" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "De identificatie van het teststation waar de test werd uitgevoerd" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "Gestart" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "Het tijdstip van de start test" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "Afgerond" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "Het tijdstip van de afgeronde test" diff --git a/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po index 3f0df0ee76..c6961f2386 100644 --- a/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/no/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -65,9 +65,9 @@ msgstr "Oppgi dato" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Kinesisk (tradisjonell)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Logg inn på appen" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Duplikatnavn kan ikke eksistere under samme overordnede" msgid "Invalid choice" msgstr "Ugyldig valg" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Navn" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Serverfeil" msgid "An error has been logged by the server." msgstr "En feil har blitt logget av serveren." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Må være et gyldig tall" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Velg valuta ut fra tilgjengelige alternativer" msgid "Username" msgstr "Brukernavn" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Fornavn" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Fornavn på brukeren" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Etternavn" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Etternavn på brukeren" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "E-postadressen til brukeren" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Personale" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Har denne brukeren personelltillatelser" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Superbruker" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Er denne brukeren en superbruker" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Er denne brukeren en superbruker" msgid "Active" msgstr "Aktiv" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Er denne brukerkontoen aktiv" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Du har ikke tillatelse til å endre denne brukerrollen." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Bare superbrukere kan opprette nye brukere" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Din konto er opprettet." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Vennligst bruk funksjonen for å tilbakestille passord for å logge inn" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Velkommen til InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Ugyldig verdi" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Datafil" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Velg datafil for opplasting" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Filtypen støttes ikke" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Filen er for stor" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Ingen kolonner funnet i filen" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Ingen datarader funnet i fil" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Ingen datarader oppgitt" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Ingen datakolonner angitt" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Mangler påkrevd kolonne: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Dupliaktkolonne: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Eksternt bilde" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URLtil ekstern bildefil" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Nedlasting av bilder fra ekstern URL er ikke aktivert" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Produksjonen må avbrytes før den kan slettes" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Produksjonen må avbrytes før den kan slettes" msgid "Consumable" msgstr "Forbruksvare" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Tildelt" msgid "Available" msgstr "Tilgjengelig" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Tilgjengelig" msgid "Build Order" msgstr "Produksjonsordre" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Produksjonsordre-referanse" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Produksjonsordre som denne produksjonen er tildelt" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Bruker eller gruppe ansvarlig for produksjonsordren" msgid "External Link" msgstr "Ekstern lenke" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Lenke til ekstern URL" @@ -1110,7 +1110,7 @@ msgstr "Produksjonsordre {build} er fullført" msgid "A build order has been completed" msgstr "En produksjonsordre er fullført" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Ingen produksjonsartikkel spesifisert" @@ -1122,37 +1122,37 @@ msgstr "Produksjonsartikkelen er allerede fullført" msgid "Build output does not match Build Order" msgstr "Produksjonsartikkelen samsvarer ikke med produksjonsordren" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Mengden må være større enn null" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Kvantitet kan ikke være større enn utgangsantallet" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Produksjonsartikkel {serial} har ikke bestått alle påkrevde tester" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "Produksjonsartikkel" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Produksjonsobjekt" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Produksjonsobjekt" msgid "Quantity" msgstr "Antall" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Påkrevd antall for produksjonsordre" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Produksjonselement må spesifisere en produksjonsartikkel, da master-del er merket som sporbar" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Tildelt antall ({q}) kan ikke overstige tilgjengelig lagerbeholdning ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Lagervaren er overtildelt" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Tildelingsantall må være større enn null" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Mengden må være 1 for serialisert lagervare" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Valgt lagervare samsvarer ikke med BOM-linjen" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Valgt lagervare samsvarer ikke med BOM-linjen" msgid "Stock Item" msgstr "Lagervare" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Kildelagervare" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Lagerantall å tildele til produksjonen" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Monteres i" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Lagervare for montering" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Delnavn" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Emballasje" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Del-ID" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "Del -IPN" @@ -1667,13 +1667,13 @@ msgstr "Sporbar" msgid "Inherited" msgstr "Nedarvet" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Tillat Varianter" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "BOM-artikkel" @@ -2145,19 +2145,19 @@ msgstr "Ufullstendige artikler" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "Er lenke" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "Er fil" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "Brukeren har ikke tillatelse til å slette dette vedlegget" @@ -2350,7 +2350,7 @@ msgstr "Hvor ofte valutakurser skal oppdateres (sett til null for å deaktiverer #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "dager" @@ -2578,7 +2578,7 @@ msgstr "Kopier designmaler for kategoriparametere" msgid "Copy category parameter templates when creating a part" msgstr "Kopier parametermaler for kategori ved oppretting av en del" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Tillat utvidelser å reagere på interne hendelser" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Aktiver prosjektkoder" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Aktiver prosjektkoder for å spore prosjekter" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Varetellingsfunksjonalitet" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Aktiver varetellingsfunksjonalitet for å registrere lagernivåer og regne ut lagerverdi" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Ekskluder eksterne plasseringer" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Eksluder lagervarer i eksterne plasseringer fra varetellinger" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Automatisk varetellingsperiode" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Antall dager mellom automatisk varetellingsregistrering (sett til null for å deaktivere)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Rapportslettingsintervall" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Varetellingsrapporter vil slettes etter angitt antall dager" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Vis brukernes fulle navn" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Vis brukernes fulle navn istedet for brukernavn" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Innstillingsnøkkel (må være unik - ufølsom for store og små bokstaver" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Skjul inaktive elementer" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Skjul inaktive deler i resultater som vises på hjemmesiden" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Vis abonnerte deler" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Vis abonnerte deler på startsiden" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Vis abonnerte kategorier" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Vis abonnerte delkatekorier på startsiden" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Vis nyeste deler" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Vis nyeste deler på startsiden" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Vis stykklister som venter på validering på startsiden" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Vis nylige lagerendringer" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Vis nylig endrede lagervarer på startsiden" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Vis lav lagerbeholdning" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Vis lave lagervarer på startsiden" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Vis tomme lagervarer" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Vis tom lagerbeholdning på startsiden" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Vis nødvendig lagerbeholdning" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Vis lagervarer som trengs for produksjon på startsiden" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Vis utløpt lagerbeholdning" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Vis utløpte lagervarer på startsiden" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Vis foreldet lagerbeholdning" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Vis foreldet lagerbeholdning på startsiden" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Vis ventende produksjoner" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Vi ventende produksjoner på startsiden" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Vis forfalte produksjoner" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Vis forfalte produksjoner på startsiden" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Vis utestående Innkjøpsordrer" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Vis utestående Innkjøpsordrer på startsiden" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Vis forfalte Innkjøpsordrer" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Vis forfalte Innkjøpsordrer på startsiden" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Vis utestående Salgsordrer" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Vis utestående Salgsordrer på startsiden" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Vis forfalte SOer" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Vis forfalte SOer på startsiden" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Vis ventende SO-forsendelser" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Vis ventende SO-forsendelser på startsiden" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Vis Nyheter" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Vis nyheter på startsiden" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Innebygd etikettvisning" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Vis PDF-etiketter i nettleseren fremfor å lastes ned som en fil" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Standard etikettskriver" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Konfigurer hvilken etikettskriver som skal være valgt som standard" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Innebygd rapportvisning" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Vis PDF-rapporter i nettleseren fremfor å lastes ned som en fil" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Søk i Deler" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Vis deler i forhåndsvsningsvinduet for søk" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Søk i Leverandørdeler" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Vis leverandørdeler i forhåndsvisningsvinduet for søk" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Søk i Produsentdeler" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Vis produsentdeler i forhåndsvisningsvinduet for søk" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Skjul Inaktive Deler" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Ekskluder inaktive deler fra forhåndsvisningsvinduet for søk" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Søk i kategorier" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Vis delkategorier i forhåndsvisningsvinduet for søk" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Søk i lagerbeholdning" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Vis lagervarer i forhåndsvisningsvinduet for søk" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Skjul utilgjengelige Lagervarer" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Ekskluder lagervarer som ikke er tilgjengelige fra forhåndsvisningsvinduet for søk" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Søk i Plasseringer" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Vis lagerplasseringer i forhåndsvisningsvinduet for søk" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Søk i Firma" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Vis firma i forhåndsvsningsvinduet for søk" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Søk i Produksjonsordrer" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Vis produksjonsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Søk i Innkjøpsordrer" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Vis innkjøpsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Ekskluder inaktive Innkjøpsordrer" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Ekskluder inaktive innkjøpsordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Søk i Salgsordrer" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Vis salgsordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Ekskluder Inaktive Salgsordrer" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Ekskluder inaktive salgsordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Søk i Returordrer" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "Vis returordrer i forhåndsvisningsvinduet for søk" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "Ekskluder Inaktive Returordrer" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "Ekskluder inaktive returordrer fra forhåndsvisningsvinduet for søk" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Forhåndsvisning av søkeresultater" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Antall resultater å vise i hver seksjon av søkeresultatsforhåndsvisningen" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Regex-søk" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Aktiver regulære uttrykk i søkeord" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Helordsøk" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "Søk returnerer resultater for treff med hele ord" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Vis antall i skjemaer" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Vis antall tilgjengelige deler i noen skjemaer" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Escape-knappen lukker skjemaer" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Bruk Escape-knappen for å lukke modal-skjemaer" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Fast navigasjonsbar" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "Navigasjonsbarens posisjon er fast på toppen av skjermen" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Datoformat" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Foretrukket format for å vise datoer" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Delplanlegging" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Vis delplanleggingsinformasjon" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Lagertelling for Del" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Vis lagertellingsinformasjon for del (om lagertellingsfunksjonalitet er aktivert)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Tabellstrenglengde" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "Maksimal lengdegrense for tekst vist i tabeller" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Motta feilrapporter" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "Motta varsler om systemfeil" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Bruker" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Antall for prisbrudd" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "Antall for prisbrudd" msgid "Price" msgstr "Pris" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Enhetspris på spesifisert antall" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Endepunkt" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Endepunktet hvor denne webhooken er mottatt" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Navn for webhooken" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Er webhooken aktiv" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "Sjetong" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Nøkkel for tilgang" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Hemmelig" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Delt hemmlighet for HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "Melding ID" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Unik Id for denne meldingen" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Vert" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Verten denne meldingen ble mottatt fra" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Tittel" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Overskrift for denne meldingen" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Brødtekst" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Innholdet i meldingen" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Endepunktet meldingen ble mottatt fra" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Arbeidet med" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "Var arbeidet med denne meldingen ferdig?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Tittel" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Tittel" msgid "Link" msgstr "Lenke" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Publisert" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Forfatter" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Sammendrag" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Les" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Er dette nyhetselementet lest?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "Er dette nyhetselementet lest?" msgid "Image" msgstr "Bilde" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Bildefil" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "Enhetssymbolet må være unikt" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "Enhetsnavn må være en gyldig identifikator" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Enhetsnavn" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Symbol" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Valgfritt enhetssymbol" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definisjon" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Enhetsdefinisjon" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Vedlegg" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Fil mangler" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Mangler eksternlenke" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Velg fil å legge ved" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "Vedleggskommentar" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "Opplastet dato" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "Datoen som filen ble lastet opp" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "Filstørrelse" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "Filstørrelse i byte" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "Ugyldig modelltype spesifisert for vedlegg" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Nøkkel" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "Artikler har blitt mottatt mot en returordre" msgid "Error raised by plugin" msgstr "Feil oppstått i utvidelse" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Kjører" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Ventende oppgaver" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Planlagte oppgaver" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Mislykkede oppgaver" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "Oppgave-ID" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "Unik oppgave-ID" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Lås" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Låsetidspunkt" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Oppgavenavn" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Funksjon" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Funksjonsnavn" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Argumenter" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Oppgaveargumenter" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Nøkkelordargumenter" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Nøkkelordargumenter for oppgave" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Filnavn" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "Modelltype" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "Brukeren har ikke tillatelse tillatelse å opprette eller endre vedlegg for denne modellen" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Parameternavn" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Parameterverdi" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Leverandørens delbeskrivelse" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Leverandørens delbeskrivelse" msgid "Note" msgstr "Notat" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "grunnkostnad" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Minimum betaling (f.eks. lageravgift)" @@ -4618,7 +4626,7 @@ msgstr "Pakkeantall" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Totalt antall i en enkelt pakke. La være tom for enkeltenheter." -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "flere" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "Brukt i" msgid "Building" msgstr "Produseres" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Minimal kostnad" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Maksimal kostnad" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Total lagerbeholdning" msgid "Input quantity for price calculation" msgstr "Sett inn antall for prisberegning" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Delkategori" @@ -6867,7 +6875,7 @@ msgstr "Del med dette Navnet, internt delnummer og Revisjon eksisterer allerede. msgid "Parts cannot be assigned to structural part categories!" msgstr "Deler kan ikke tilordnes strukturelle delkategorier!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Delnavn" @@ -7006,159 +7014,159 @@ msgstr "Eier ansvarlig for denne delen" msgid "Last Stocktake" msgstr "Siste lagertelling" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Selg flere" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "Valuta som brukes til å bufre prisberegninger" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Minimal BOM-kostnad" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "Minste kostnad for komponentdeler" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Maksimal BOM-kostnad" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "Maksimal kostnad for komponentdeler" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "Minimal innkjøpskostnad" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "Minimal historisk innkjøpskostnad" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "Maksimal innkjøpskostnad" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "Maksimal historisk innkjøpskostnad" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "Minimal intern pris" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "Minimal kostnad basert på interne prisbrudd" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "Maksimal intern pris" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "Maksimal kostnad basert på interne prisbrudd" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "Minimal leverandørpris" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "Minimumspris for del fra eksterne leverandører" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "Maksimal leverandørpris" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "Maksimalpris for del fra eksterne leverandører" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "Minimal Variantkostnad" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "Beregnet minimal kostnad for variantdeler" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "Maksimal Variantkostnad" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "Beregnet maksimal kostnad for variantdeler" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "Overstyr minstekostnad" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "Overstyr maksimal kostnad" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "Beregnet samlet minimal kostnad" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "Beregnet samlet maksimal kostnad" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "Minimal salgspris" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "Minimal salgspris basert på prisbrudd" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "Maksimal Salgspris" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "Maksimal salgspris basert på prisbrudd" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Minimal Salgskostnad" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "Minimal historisk salgspris" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "Maksimal Salgskostnad" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "Maksimal historisk salgspris" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "Del for varetelling" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Antall" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "Antall individuelle lagerenheter på tidspunkt for varetelling" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "Total tilgjengelig lagerbeholdning på tidspunkt for varetelling" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "Total tilgjengelig lagerbeholdning på tidspunkt for varetelling" msgid "Date" msgstr "Dato" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "Dato for utført lagertelling" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Flere notater" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "Bruker som utførte denne lagertellingen" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Minimal lagerkostnad" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Estimert minimal kostnad for lagerbeholdning" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "Maksimal lagerkostnad" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "Estimert maksimal kostnad for lagerbeholdning" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Rapport" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "Lagertellingsrapportfil (generert internt)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Antall deler" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "Antall deler dekket av varetellingen" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "Bruker som forespurte varetellingsrapporten" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "Valg må være unike" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Testnavn" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Angi et navn for testen" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Testbeskrivelse" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Legg inn beskrivelse for denne testen" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Aktivert" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Påkrevd" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "Er det påkrevd at denne testen bestås?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Krever verdi" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "Krever denne testen en verdi når det legges til et testresultat?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Krever vedlegg" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "Krever denne testen et filvedlegg når du legger inn et testresultat?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Valg" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "Sjekkboksparameter kan ikke ha enheter" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "Sjekkboksparameter kan ikke ha valg" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "Navn på parametermal må være unikt" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Parameternavn" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "Fysisk enheter for denne parameteren" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "Parameterbeskrivelse" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "Sjekkboks" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "Er dette parameteret en sjekkboks?" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "Gyldige valg for denne parameteren (kommaseparert)" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "Ugyldig valg for parameterverdi" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Overordnet del" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Parametermal" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Parameterverdi" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Standardverdi" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Standard Parameterverdi" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "Del-ID eller delnavn" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Unik del-ID-verdi" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Delens interne delnummerverdi" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Nivå" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "BOM-nivå" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Velg overordnet del" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Underordnet del" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Velg del som skal brukes i BOM" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "BOM-antall for denne BOM-artikkelen" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Denne BOM-artikkelen er valgfri" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Denne BOM-artikkelen er forbruksvare (den spores ikke i produksjonsordrer)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Svinn" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Forventet produksjonssvinn (absolutt eller prosent)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "BOM-artikkelreferanse" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "BOM-artikkelnotater" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Kontrollsum" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "BOM-linje kontrollsum" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Godkjent" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "Denne BOM-artikkelen er godkjent" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "Arves" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Denne BOM-artikkelen er arvet fra stykkliste for variantdeler" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Lagervarer for variantdeler kan brukes for denne BOM-artikkelen" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "Antall må være heltallsverdi for sporbare deler" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "Underordnet del må angis" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "BOM-artikkel erstatning" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "Erstatningsdel kan ikke være samme som hoveddelen" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Overordnet BOM-artikkel" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Erstatningsdel" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Del 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Del 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Velg relatert del" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "Del-forhold kan ikke opprettes mellom en del og seg selv" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "Duplikatforhold eksisterer allerede" @@ -8593,7 +8601,7 @@ msgstr "Bilde for del ikke funnet" msgid "Part Pricing" msgstr "Delprising" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "Gir støtte for å skanne TME-strekkoder" msgid "The Supplier which acts as 'TME'" msgstr "Leverandøren som fungerer som \"TME\"" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "Installasjon av utvidelse vellykket" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "Installerte utvidelsen til {path}" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "Eksempel valutakonverterings-utvidelse" msgid "InvenTree Contributors" msgstr "InvenTree-bidragsytere" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "Kilde-URL" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Ingen gyldige objekter angitt for mal" @@ -9518,7 +9582,7 @@ msgstr "Testresultater" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Resultat" @@ -9892,7 +9956,7 @@ msgstr "Antallet stemmer ikke overens med serienumrene" msgid "Serial numbers already exist" msgstr "Seriernummer eksisterer allerede" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "Lagerstatuskoder må være like" msgid "StockItem cannot be moved as it is not in stock" msgstr "Lagervare kan ikke flyttes fordi den ikke er på lager" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Oppføringsnotater" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Verdi må angis for denne testen" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "Vedlegg må lastes opp for denne testen" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Testresultat" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Testens verdi" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Vedlegg til testresultat" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Testnotater" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po index fcdd4f7b09..72615dc66a 100644 --- a/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/pl/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -65,9 +65,9 @@ msgstr "Wprowadź dane" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "chiński (tradycyjny)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Logowanie do aplikacji" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Duplikaty nazw nie mogą istnieć pod tym samym rodzicem" msgid "Invalid choice" msgstr "Błędny wybór" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nazwa" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Błąd serwera" msgid "An error has been logged by the server." msgstr "Błąd został zapisany w logach serwera." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Numer musi być prawidłowy" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Wybierz walutę z dostępnych opcji" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "Aktywny" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Nie masz uprawnień do zmiany tej roli użytkownika." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Tylko superużytkownicy mogą tworzyć nowych użytkowników" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Twoje konto zostało utworzone." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Zresetuj hasło" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Witamy w InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Nieprawidłowa wartość" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Plik danych" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Wybierz plik danych do przesłania" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Nieobsługiwany typ pliku" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Plik jest zbyt duży" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Nie znaleziono kolumn w pliku" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Nie znaleziono wierszy danych w pliku" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Nie podano wierszy danych" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Nie podano kolumn danych" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Brakuje wymaganej kolumny: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Zduplikowana kolumna: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Obrazek zewnętrzny" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "Adres URL zdalnego pliku obrazu" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Pobieranie obrazów ze zdalnego URL nie jest włączone" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Kompilacja musi zostać anulowana, zanim będzie mogła zostać usunięta" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Kompilacja musi zostać anulowana, zanim będzie mogła zostać usunięt msgid "Consumable" msgstr "Materiał eksploatacyjny" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Przydzielono" msgid "Available" msgstr "Dostępne" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Dostępne" msgid "Build Order" msgstr "Zlecenie Budowy" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Odwołanie do zamówienia wykonania" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Zamówienie budowy, do którego budowa jest przypisana" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Użytkownik lub grupa odpowiedzialna za te zlecenie produkcji" msgid "External Link" msgstr "Link Zewnętrzny" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link do zewnętrznego adresu URL" @@ -1110,7 +1110,7 @@ msgstr "Kolejność kompilacji {build} została zakończona" msgid "A build order has been completed" msgstr "Kolejność kompilacji została zakończona" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Nie określono danych wyjściowych budowy" @@ -1122,37 +1122,37 @@ msgstr "Budowanie wyjścia jest już ukończone" msgid "Build output does not match Build Order" msgstr "Skompilowane dane wyjściowe nie pasują do kolejności kompilacji" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Ilość musi być większa niż zero" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Ilość nie może być większa niż ilość wyjściowa" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Wyjście budowy {serial} nie przeszło wszystkich testów" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Zbuduj obiekt" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Zbuduj obiekt" msgid "Quantity" msgstr "Ilość" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Wymagana ilość dla zlecenia produkcji" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Przydzielona ilość ({q}) nie może przekraczać dostępnej ilości zapasów magazynowych ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Pozycja magazynowa jest nadmiernie przydzielona" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Alokowana ilość musi być większa niż zero" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Ilość musi wynosić 1 dla serializowanych zasobów" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Wybrana pozycja magazynowa nie pasuje do pozycji w zestawieniu BOM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Wybrana pozycja magazynowa nie pasuje do pozycji w zestawieniu BOM" msgid "Stock Item" msgstr "Element magazynowy" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Lokalizacja magazynowania przedmiotu" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Ilość zapasów do przydzielenia do produkcji" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Zainstaluj do" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Docelowa lokalizacja magazynowa przedmiotu" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Nazwa komponentu" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Opakowanie" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "ID komponentu" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "IPN komponentu" @@ -1667,13 +1667,13 @@ msgstr "Możliwość śledzenia" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Zezwalaj na warianty" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Element BOM" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "Jak często aktualizować kursy wymiany walut (ustaw zero aby wyłączy #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "dni" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Klucz ustawień (musi być unikalny - niewrażliwy na wielkość liter" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Pokaż obserwowane części" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Pokaż obserwowane części na stronie głównej" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Pokaż obserwowane kategorie" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Pokaż obserwowane kategorie części na stronie głównej" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Pokaż najnowsze części" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Pokaż najnowsze części na stronie głównej" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Pokaż niski stan magazynowy" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Pokaż elementy o niskim stanie na stronie głównej" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Pokaż wymagany stan zapasów" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Szukaj części" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Ukryj nieaktywne części" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Wyszukaj zlecenia zakupu" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Wyklucz nieaktywne zlecenia zakupu" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Pokaż ilość w formularzach" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Stały pasek nawigacyjny" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Format daty" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Preferowany format wyświetlania dat" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Planowanie komponentów" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Użytkownik" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "Cena" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Punkt końcowy" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Sekret" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Współdzielony sekret dla HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "Id wiadomości" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Unikalny identyfikator dla tej wiadomości" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Host, od którego otrzymano tę wiadomość" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Nagłówek" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Nagłówek tej wiadomości" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Zawartość" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "Łącze" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autor" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "Obraz" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Załącznik" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Brak pliku" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Brak zewnętrznego odnośnika" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Wybierz plik do załączenia" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentarz" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Klucz" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Jest uruchomiony" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Oczekujce zadania" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Zaplanowane zadania" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Zadania zakończone błędem" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "ID zadania" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "Unikalny identyfikator zadania" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Blokada" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Czas blokady" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Nazwa zadania" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Funkcja" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Nazwa funkcji" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Argumenty" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Argumenty zadania" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Nazwa pliku" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Nazwa parametru" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Wartość parametru" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "Uwaga" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "koszt podstawowy" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "Ilość w opakowaniu" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "wielokrotność" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Dane" @@ -6557,12 +6565,12 @@ msgstr "Użyte w" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Kategoria komponentu" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Nazwa komponentu" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "Ostatnia inwentaryzacja" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Sprzedaj wiele" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "Data" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Nazwa testu" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Testowy opis" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Wprowadź opis do tego testu" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Aktywne" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Wymagane" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Wymaga wartości" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Wymaga załącznika" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Część nadrzędna" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Wartość parametru" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Wartość domyślna" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Unikalny wartość ID komponentu" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Wartość IPN części" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Poziom" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Wybierz część nadrzędną" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Podczęść" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Ten element BOM jest opcjonalny" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Notatki pozycji BOM" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Suma kontrolna" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Zatwierdzone" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Część zastępcza" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Część 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Część 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Wybierz powiązaną część" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "Nie znaleziono obrazka części" msgid "Part Pricing" msgstr "Cennik części" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "Źródłowy adres URL" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Brak prawidłowych obiektów do szablonu" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Wynik" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "Numer seryjny już istnieje" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Notatki do wpisu" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Należy podać wartość dla tego testu" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Wynik testu" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po index 276e8493de..ff593db9e8 100644 --- a/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/pt/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -65,9 +65,9 @@ msgstr "Insira uma Data" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Chinês (Tradicional)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Entre no aplicativo" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Nomes duplicados não podem existir sob o mesmo parental" msgid "Invalid choice" msgstr "Escolha inválida" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Nome" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Erro de servidor" msgid "An error has been logged by the server." msgstr "Log de erro salvo pelo servidor." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Preicsa ser um numero valido" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Selecione a Moeda nas opções disponíveis" msgid "Username" msgstr "Nome de usuário" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Primeiro Nome" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Sobrenome" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "Ativo" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Não tem permissões para alterar este papel do usuário." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Apenas superusuários podem criar novos usuários" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Sua conta foi criada." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Por favor, use a função de redefinir senha para acessar" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Bem-vindo(a) ao InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Valor inválido" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Arquivo de dados" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Selecione um arquivo de dados para enviar" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Tipo de arquivo não suportado" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "O arquivo é muito grande" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Nenhuma coluna encontrada no arquivo" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Nenhuma linha de dados encontrada no arquivo" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Nenhuma linha de dados fornecida" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Nenhuma coluna de dados fornecida" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Falta a coluna obrigatória: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Coluna duplicada: \"{col}\"" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Imagens Remota" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL do arquivo de imagem remoto" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Baixar imagens de URL remota não está habilitado" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Produção deve ser cancelada antes de ser deletada" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Produção deve ser cancelada antes de ser deletada" msgid "Consumable" msgstr "Consumível" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Alocado" msgid "Available" msgstr "Disponível" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Disponível" msgid "Build Order" msgstr "Ordem de Produção" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Referência do pedido de produção" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Pedido de produção para qual este serviço está alocado" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Usuário ou grupo responsável para este pedido de produção" msgid "External Link" msgstr "Link Externo" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link para URL externa" @@ -1110,7 +1110,7 @@ msgstr "O Pedido de produção {build} foi concluído!" msgid "A build order has been completed" msgstr "Um pedido de produção foi concluído" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Nenhuma saída de produção especificada" @@ -1122,37 +1122,37 @@ msgstr "Saída de produção já completada" msgid "Build output does not match Build Order" msgstr "Saída da produção não corresponde ao Pedido de Produção" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Quantidade deve ser maior que zero" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Quantidade não pode ser maior do que a quantidade de saída" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "O item de produção {serial} não passou todos os testes necessários" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "Item da linha de Produção" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Objeto de produção" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Objeto de produção" msgid "Quantity" msgstr "Quantidade" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Quantidade necessária para o pedido de produção" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Item de produção deve especificar a saída, pois peças mestres estão marcadas como rastreáveis" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Quantidade alocada ({q}) não deve exceder a quantidade disponível em estoque ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "O item do estoque está sobre-alocado" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Quantidade alocada deve ser maior que zero" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Quantidade deve ser 1 para estoque serializado" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Item estoque selecionado não coincide com linha da LDM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Item estoque selecionado não coincide com linha da LDM" msgid "Stock Item" msgstr "Item de estoque" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Origem do item em estoque" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Quantidade do estoque para alocar à produção" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Instalar em" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Destino do Item do Estoque" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Nome da Peça" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Embalagem" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "ID da Peça" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "IPN da Peça" @@ -1667,13 +1667,13 @@ msgstr "Rastreável" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Permitir variações" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Item LDM" @@ -2145,19 +2145,19 @@ msgstr "Saídas Incompletas" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "É uma Ligação" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "É um arquivo" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "O Utilizador não tem permissão para remover este anexo" @@ -2350,7 +2350,7 @@ msgstr "Com que frequência atualizar as taxas de câmbio (defina como zero para #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "dias" @@ -2578,7 +2578,7 @@ msgstr "Copiar Parâmetros dos Modelos de Categoria" msgid "Copy category parameter templates when creating a part" msgstr "Copiar parâmetros do modelo de categoria quando criar uma peça" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Ativar extensões para responder a eventos internos" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Habilitar códigos de projeto" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Ativar códigos de projeto para rastrear projetos" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Funcionalidade de Balanço do Inventário" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Ativar funcionalidade de balanço para gravar níveis de estoque e calcular seu valor" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Excluir Locais Externos" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Excluir itens de estoque em locais externos dos cálculos do estoque" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Período de Balanço Automático" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Número de dias entre gravação do balanço de estoque (coloque zero para desativar)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Intervalo para Excluir o Relatório" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Relatórios de balanço serão apagados após um número de dias especificado" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Mostrar nomes completos dos usuários" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Mostrar Nomes Completos em vez de Nomes de Usuário" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Senha de configurações (deve ser única — diferencia maiúsculas de minúsculas" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Ocultar peças inativas" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ocultar peças inativas nos resultados exibidos na página inicial" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Mostrar peças subscritas" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Mostrar peças subscritas na tela inicial" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Mostrar categorias subscritas" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Mostrar categorias de peças subscritas na tela inicial" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Mostrar peças mais recentes" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Mostrar as peças mais recentes na página inicial" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Mostrar LDMs que aguardam validação na página inicial" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Mostrar alterações recentes de estoque" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Mostrar itens de estoque alterados recentemente na página inicial" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Mostrar estoque baixo" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Mostrar itens de baixo estoque na página inicial" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Mostrar estoque esgotado" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Mostrar itens sem estoque na página inicial" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Mostrar estoque necessário" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Mostrar itens de estoque necessários para produções na tela inicial" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Mostrar estoque expirado" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Mostrar expirados itens em estoque na tela inicial" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Mostrar estoque inativo" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Mostrar estoque inativo na tela inicial" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Mostrar produções pendentes" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Mostrar produções pendentes na tela inicial" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Mostrar produções atrasadas" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Mostrar produções atrasadas na tela inicial" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Mostrar pedidos de compra pendentes" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Mostrar os Pedidos de Compras pendentes na página inicial" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Mostrar Pedidos de Compra atrasados" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Mostrar os Pedidos de Compras atrasadas na tela inicial" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Mostrar pedidos de vendas pendentes" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Mostrar os Pedidos de Vendas pendentes na página inicial" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Mostrar Pedidos de Venda atrasados" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Mostrar os Pedidos de Vendas atrasadas na tela inicial" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Mostrar remessas de OV pendentes" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Mostrar envios OV pendentes na tela inicial" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Mostrar notícias" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Mostrar notícias na tela inicial" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Mostrar etiqueta em linha" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Mostrar etiquetas em PDF no navegador, ao invés de baixar o arquivo" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Impressora de etiquetas padrão" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Configurar qual impressora de etiqueta deve ser selecionada por padrão" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Mostrar relatório em linha" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Mostrar relatórios em PDF no navegador, ao invés de baixar o arquivo" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Procurar Peças" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Mostrar peças na janela de visualização de pesquisa" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Buscar Peças do Fornecedor" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Mostrar fornecedor de peças na janela de visualização de pesquisa" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Buscar peças do fabricante" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Mostrar fabricante de peças na janela de visualização de pesquisa" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Ocultar peças inativas" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Não incluir peças inativas na janela de visualização de pesquisa" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Pesquisar Categorias" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Mostrar categoria das peças na janela de visualização de pesquisa" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Pesquisar Estoque" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Mostrar itens do estoque na janela de visualização de pesquisa" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Ocultar itens do estoque indisponíveis" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Não incluir itens de estoque que não estão disponíveis na janela de visualização de pesquisa" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Procurar Locais" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Mostrar locais de estoque na janela de visualização de pesquisa" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Pesquisar empresas" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Mostrar empresas na janela de visualização de pesquisa" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Procurar Pedidos de Produção" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Mostrar pedidos de produção na janela de visualização de pesquisa" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Mostrar Pedido de Compras" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Mostrar pedidos de compra na janela de visualização de pesquisa" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Não incluir Pedidos de Compras Inativos" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Não incluir pedidos de compras inativos na janela de visualização de pesquisa" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Procurar Pedidos de Vendas" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Mostrar pedidos de vendas na janela de visualização de pesquisa" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Não Incluir Pedidos de Compras Inativas" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Não incluir pedidos de vendas inativos na janela de visualização de pesquisa" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Procurar Pedidos de Devolução" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "Mostrar pedidos de devolução na janela de visualização de pesquisa" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "Não Incluir Pedidos de Devolução Inativas" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "Não incluir pedidos de devolução inativos na janela de visualização de pesquisa" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Mostrar Resultados Anteriores" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Número de resultados mostrados em cada seção da janela de visualização de pesquisa" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Pesquisa de Regex" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Permitir expressôes comuns nas conultas de pesquisas" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Busca de Palavras Inteira" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "Pesquisa retorna que palavra inteira coincide" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Mostrar Quantidade nos Formulários" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Mostrar a quantidade de peças disponíveis em alguns formulários" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Tecla Esc Fecha Formulários" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Usar a tecla Esc para fechar fomulários modais" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Fixar Navbar" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "A posição do Navbar é fixa no topo da tela" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Formato da data" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Formato preferido para mostrar datas" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Agendamento de peças" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Mostrar informações de agendamento de peças" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Balanço de Peça" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Mostrar informação de balanço da peça (se a funcionalidade de balanço estiver habilitada)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Comprimento da Tabela de Frases" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "Limite máximo de comprimento para frases exibidas nas visualizações de tabela" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Receber relatório de erros" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "Receber notificações para erros do sistema" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "Últimas máquinas de impressão utilizadas" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "Salvar as últimas máquinas de impressão usadas para um usuário" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Usuario" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Quantidade de Parcelamentos" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "Quantidade de Parcelamentos" msgid "Price" msgstr "Preço" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Preço unitário na quantidade especificada" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Ponto final" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Ponto final em qual o gancho web foi recebido" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Nome para este webhook" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Este gancho web está ativo" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Token de acesso" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Segredo" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Segredo compartilhado para HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "ID da Mensagem" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Identificador exclusivo desta mensagem" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Servidor" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Servidor do qual esta mensagem foi recebida" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Cabeçalho" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Cabeçalho da mensagem" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Corpo" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Corpo da mensagem" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Ponto do qual esta mensagem foi recebida" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Trabalhado em" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "O trabalho desta mensagem foi concluído?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Título" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Título" msgid "Link" msgstr "Ligação" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Publicado" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Autor" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Resumo" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Lida" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Esta notícia do item foi lida?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "Esta notícia do item foi lida?" msgid "Image" msgstr "Imagem" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Arquivo de imagem" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "Nome da unidade deve ser um identificador válido" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Nome da unidade" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Símbolo" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Símbolo de unidade opcional" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Definição" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Definição de unidade" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Anexo" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Arquivo ausente" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Link externo não encontrado" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Selecione arquivo para anexar" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Comentario" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Chave" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "Os itens de um pedido de devolução foram recebidos" msgid "Error raised by plugin" msgstr "Erro criado pela extensão" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Executando" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Tarefas Pendentes" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Tarefas Agendadas" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Tarefas com Falhas" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "ID da Tarefa" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "ID Único da Tarefa" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Bloquear" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Tempo de bloqueio" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Nome da tarefa" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Função" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Nome da função" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Argumentos" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Argumentos da tarefa" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Argumentos de Palavra-chave" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Argumentos Palavra-chave da Tarefa" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Nome do arquivo" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Nome do parâmetro" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Valor do Parâmetro" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Descrição da peça fornecedor" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Descrição da peça fornecedor" msgid "Note" msgstr "Anotação" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "preço base" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Taxa mínima (ex.: taxa de estoque)" @@ -4618,7 +4626,7 @@ msgstr "Quantidade de embalagens" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Quantidade total fornecida em um único pacote. Deixe em branco para itens únicos." -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "múltiplo" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Dados" @@ -6557,12 +6565,12 @@ msgstr "Usado em" msgid "Building" msgstr "Produzindo" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Custo Mínimo" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Custo Máximo" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Estoque Total" msgid "Input quantity for price calculation" msgstr "Quantidade para o cálculo de preço" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Categoria da Peça" @@ -6867,7 +6875,7 @@ msgstr "Uma parte com este Nome, IPN e Revisão já existe." msgid "Parts cannot be assigned to structural part categories!" msgstr "Peças não podem ser atribuídas a categorias estruturais!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Nome da peça" @@ -7006,159 +7014,159 @@ msgstr "Proprietário responsável por esta peça" msgid "Last Stocktake" msgstr "Último Balanço" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Venda múltipla" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "Moeda usada para armazenar os cálculos de preços" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Custo Mínimo da LDM" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "Custo mínimo das peças componentes" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Custo Máximo da LDM" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "Custo máximo das peças componentes" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "Custo Mínimo de Compra" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "Custo mínimo histórico de compra" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "Custo Máximo de Compra" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "Custo máximo histórico de compra" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "Preço Interno Mínimo" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "Custo mínimo baseado nos intervalos de preço internos" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "Preço Interno Máximo" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "Custo máximo baseado nos intervalos de preço internos" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "Preço Mínimo do Fornecedor" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "Preço mínimo da peça de fornecedores externos" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "Preço Máximo do Fornecedor" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "Preço máximo da peça de fornecedores externos" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "Custo Mínimo variável" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "Custo mínimo calculado das peças variáveis" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "Custo Máximo Variável" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "Custo máximo calculado das peças variáveis" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "Sobrepor o custo mínimo" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "Sobrepor o custo máximo" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "Custo total mínimo calculado" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "Custo total máximo calculado" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "Preço Mínimo de Venda" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "Preço mínimo de venda baseado nos intervalos de preço" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "Preço Máximo de Venda" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "Preço máximo de venda baseado nos intervalos de preço" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Custo Mínimo de Venda" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "Preço histórico mínimo de venda" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "Custo Máximo de Venda" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "Preço histórico máximo de venda" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "Peça para Balanço" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Total de Itens" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "Número de entradas de estoques individuais no momento do balanço" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "Estoque total disponível no momento do balanço" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "Estoque total disponível no momento do balanço" msgid "Date" msgstr "Data" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "Data de realização do balanço" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Notas adicionais" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "Usuário que fez o balanço" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Custo Mínimo de Estoque" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Custo mínimo estimado de estoque disponível" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "Custo Máximo de Estoque" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "Custo máximo estimado de estoque disponível" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Reportar" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "Arquivo de Relatório de Balanço (gerado internamente)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Contagem de Peças" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "Número de peças cobertas pelo Balanço" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "Usuário que solicitou este relatório de balanço" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "Escolhas devem ser únicas" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Nome de Teste" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Insira um nome para o teste" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Descrição do Teste" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Digite a descrição para este teste" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Habilitado" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Requerido" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "Este teste é obrigatório passar?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Requer Valor" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "Este teste requer um valor ao adicionar um resultado de teste?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Anexo obrigatório" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "Este teste requer um anexo ao adicionar um resultado de teste?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Escolhas" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "Parâmetros da caixa de seleção não podem ter unidades" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "Os parâmetros da caixa de seleção não podem ter escolhas" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "Nome do modelo de parâmetro deve ser único" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Nome do Parâmetro" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "Unidades físicas para este parâmetro" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "Descrição do Parâmetro" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "Caixa de seleção" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "Este parâmetro é uma caixa de seleção?" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "Opções válidas para este parâmetro (separadas por vírgulas)" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "Escolha inválida para valor do parâmetro" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Peça Paternal" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Modelo de parâmetro" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Valor do Parâmetro" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Valor Padrão" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Valor Padrão do Parâmetro" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "ID da peça ou nome da peça" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Valor exclusivo do ID de peça" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Valor da parte IPN" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Nível" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "Nível da LDM" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Selecione a Peça Parental" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Sub peça" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Selecionar peça a ser usada na LDM" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "Quantidade de LDM para este item LDM" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Este item LDM é opcional" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Este item LDM é consumível (não é rastreado nos pedidos de construção)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Excedente" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Quantidade estimada de desperdício (absoluto ou porcentagem)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "Referência do Item LDM" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Notas do Item LDM" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Soma de verificação" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "Soma de Verificação da LDM da linha" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Validado" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "O item da LDM foi validado" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "Obtém herdados" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Este item da LDM é herdado por LDMs para peças variáveis" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Itens de estoque para as peças das variantes podem ser usados para este item LDM" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "Quantidade deve ser valor inteiro para peças rastreáveis" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "Sub peça deve ser especificada" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "Substituir Item da LDM" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "A peça de substituição não pode ser a mesma que a peça mestre" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Item LDM Parental" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Substituir peça" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Parte 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Parte 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Selecionar Peça Relacionada" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "Relacionamento da peça não pode ser criada com ela mesma" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "Relação duplicada já existe" @@ -8593,7 +8601,7 @@ msgstr "Imagem da peça não encontrada" msgid "Part Pricing" msgstr "Preço Peça" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "Fornece suporte para escanear códigos de barras TME" msgid "The Supplier which acts as 'TME'" msgstr "O fornecedor que atua como 'TME'" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "Plugin instalado com sucesso" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "Plugin instalado na {path}" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "Plugin de Câmbio de exemplo" msgid "InvenTree Contributors" msgstr "Contribuidores do InvenTree" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "URL de origem" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Nenhum objeto válido fornecido para o modelo" @@ -9518,7 +9582,7 @@ msgstr "Resultados do teste" msgid "Test" msgstr "Teste" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Resultado" @@ -9892,7 +9956,7 @@ msgstr "A quantidade não corresponde aos números de série" msgid "Serial numbers already exist" msgstr "Números de série já existem" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "Códigos de estado do estoque devem corresponder" msgid "StockItem cannot be moved as it is not in stock" msgstr "Item do estoque não pode ser realocado se não houver estoque da mesma" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Observações de entrada" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Deve-se fornecer o valor desse teste" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "O anexo deve ser enviado para este teste" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Resultado do teste" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Valor da saída do teste" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Anexo do resultado do teste" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Notas do teste" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po index 2e8485d378..864928ec81 100644 --- a/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-10 00:20\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -65,9 +65,9 @@ msgstr "" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Chinês (tradicional)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Erro de servidor" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Arquivo de dados" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Quantidade necessária para o pedido de produção" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po index bd090a035b..c38b3c64c5 100644 --- a/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ro/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -65,9 +65,9 @@ msgstr "" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po index d28f088a2c..1d2bdc0163 100644 --- a/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/ru/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -65,9 +65,9 @@ msgstr "Введите дату" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Китайский (Традиционный)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Войти в приложение" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Повторяющиеся имена не могут существов msgid "Invalid choice" msgstr "Неверный выбор" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Название" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Ошибка сервера" msgid "An error has been logged by the server." msgstr "Сервер зарегистрировал ошибку." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Должно быть действительным номером" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Выберите валюту из доступных вариантов msgid "Username" msgstr "Имя пользователя" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Имя" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Имя пользователя" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Фамилия" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Фамилия пользователя" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Электронный адрес пользователя" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Персонал" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Имеет ли этот пользователь права персонала" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Суперпользователь" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Это пользователь является суперпользователем" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Это пользователь является суперпользо msgid "Active" msgstr "Активный" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Активна эта учетная запись" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "У вас недостаточно прав для изменения роли этого пользователя." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Только суперпользователи могут создавать новых пользователей" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Ваша учётная запись была успешно создана." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Пожалуйста, используйте функцию сброса пароля для входа" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Добро пожаловать в InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Неверное значение" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Файл данных" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Выберите файл данных для загрузки" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Неподдерживаемый тип файла" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Файл слишком большой" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Столбцы в файле не найдены" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Строки данных в файле не найдены" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Строки данных в файле не найдены" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Столбцы данных не предоставлены" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Отсутствует обязательный столбец: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Повторяющийся столбец: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Удаленное изображение" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "ССЫЛКА файла изображения на удаленном сервере" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Загрузка изображений с удаленного URL-адреса не включена" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Заказ на производство должен быть отменен перед удалением" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Заказ на производство должен быть отме msgid "Consumable" msgstr "Расходники" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Зарезервировано" msgid "Available" msgstr "Доступно" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Доступно" msgid "Build Order" msgstr "Заказ на производство" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Ссылка на заказ на производство" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Заказ на производство, которому принад #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Пользователь, ответственный за этот за msgid "External Link" msgstr "Внешняя ссылка" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Ссылка на внешний URL" @@ -1110,7 +1110,7 @@ msgstr "Заказ на производство {build} был завершен msgid "A build order has been completed" msgstr "Заказ на производство был завершен" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Продукция не указана" @@ -1122,37 +1122,37 @@ msgstr "Продукция уже произведена" msgid "Build output does not match Build Order" msgstr "Продукция не совпадает с заказом на производство" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Количество должно быть больше нуля" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Количество не может быть больше количества продукции" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "Сборка {serial} не прошла все необходимые тесты" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "Номер позиции для производства" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Объект производства" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Объект производства" msgid "Quantity" msgstr "Количество" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Требуемое количество для заказа на производство" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Элемент производства должен указать продукцию, как главную деталь помеченную как отслеживаемая" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Резервируемое количество ({q}) не должно превышать доступное количество на складе ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Складская позиция перераспределена" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Резервируемое количество должно быть больше нуля" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Количество должно быть 1 для сериализованных запасов" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Выбранная складская позиция не соответствует позиции в BOM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Выбранная складская позиция не соответ msgid "Stock Item" msgstr "Складская позиция" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Исходная складская позиция" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Количество на складе для производства" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Установить в" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Целевая складская позиция" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Наименование детали" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Упаковка" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Код детали" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "IPN детали" @@ -1667,13 +1667,13 @@ msgstr "Отслеживание" msgid "Inherited" msgstr "Унаследованные" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Разрешить разновидности" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Позиция BOM" @@ -2145,19 +2145,19 @@ msgstr "Незавершенная продукция" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "Ссылка" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "Файл" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "У пользователя нет прав на удаление этого вложения" @@ -2350,7 +2350,7 @@ msgstr "Как часто обновлять курс валют (установ #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "дней" @@ -2578,7 +2578,7 @@ msgstr "Скопировать параметры по шаблону катег msgid "Copy category parameter templates when creating a part" msgstr "Копировать параметры по шаблону категории при создании детали" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Исключить складские позиции во внешних местах хранения из инвентаризации" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Автоматический период инвентаризации" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Количество дней между автоматической записью запасов (установите нулевое значение для отключения)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Интервал удаления журнала ошибок" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Журналы ошибок будут удалены после указанного количества дней" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Показывать полные имена пользователей" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Отображать полные имена пользователей вместо логинов" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "Включить данные тестовой станции" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "Включить сбор данных с тестовой станции для получения результатов тестирования" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Ключ настроек (должен быть уникальным - не чувствителен к регистру)" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Скрыть неактивные детали" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Скрывать неактивные части в результатах, отображаемых на главной странице," -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Показывать детали, на которые включены уведомления" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Показывать детали, на которые включены уведомления, на главной странице" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Показывать категории, на которые включены уведомления" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Показывать категории, на которые включены уведомления, на главной странице" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Показывать последние детали" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Показывать последние детали на главной странице" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "Показывать недопустимые спецификации" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Показывать BOMы, ожидающие проверки, на главной странице" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Показывать изменившиеся складские запасы" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Показывать складские позиции с недавно изменившимися запасами на главной странице" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Показывать низкие складские запасы" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Показывать складские позиции с низкими запасами на главной странице" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Показывать закончившиеся складские позиции" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Показывать закончившиеся складские позиции на главной странице" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Показывать требуемые складские позиции" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Показывать требуемые для производства складские позиции на главной странице" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Показывать складские позиции с истекшим сроком годности" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Показывать складские позиции с истёкшим сроком годности на главной странице" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Показывать залежалые складские позиции" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Показывать складские позиции с истекающим сроком годности на главной странице" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Показывать незавершённые производства" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Показывать незавершённые производства на главной странице" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Показывать просроченные производства" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Показывать просроченные производства на главной странице" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Показать невыполненные заказы" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Покажите невыполненные заказы на покупку на главной странице" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Показать просроченные заказы на производство" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Показывать просроченные сборки на главной странице" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Показать невыполненные заказы" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Покажите невыполненные заказы на покупку на главной странице" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Показать просроченные заказы на продажу" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Показывать просроченные заказы на покупку на главной странице" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Показывать новости" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Отображение PDF-этикетки в браузере вместо загрузки в виде файла" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Принтер этикетки по умолчанию" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Настроить принтер этикеток по умолчанию" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Отображение встроенного отчета" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Отображение PDF-этикетки в браузере вместо загрузки в виде файла" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Поиск Деталей" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Отображение деталей в окне предварительного просмотра поиска" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Поиск деталей поставщика" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Отображение деталей поставщика в окне предварительного просмотра поиска" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Новая деталь производителя" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Отображение деталей поставщика в окне предварительного просмотра поиска" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Скрыть неактивные детали" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Исключить неактивные детали из окна предварительного просмотра поиска" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Категории поиска" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Отображение деталей в окне предварительного просмотра поиска" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Поиск Запасов" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Отображать складские позиции в окне предварительного просмотра поиска" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Скрыть недоступные складские позиции" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Исключить недоступные складские позиции из окна предварительного просмотра поиска" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Поиск мест хранения" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Отображать места хранения в окне предварительного просмотра поиска" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Поиск компаний" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Поиск заказов на производство" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Отображать заказы на производство в окне предварительного просмотра поиска" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Поиск заказов на покупку" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Поиск заказов на продажу" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Поиск заказов на возврат" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Поиск по Regex" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Фиксированная панель навигации" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Формат даты" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Планирование деталей" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Инвентаризация детали" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Пользователь" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "Цена" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Конечная точка" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "Токен" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Токен для доступа" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Секрет" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "ID Сообщения" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Хост" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Заголовок" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Тело" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Работал над" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "Код" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Заголовок" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Заголовок" msgid "Link" msgstr "Ссылка" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Опубликовано" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Автор" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Итого" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Читать" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "Изображение" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Файл изображения" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Название единицы" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Символ" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Определение" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Вложения" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Файл не найден" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Отсутствует внешняя ссылка" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Выберите файл для вложения" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Комментарий" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Ключ" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Запущен" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Ожидающие задачи" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Запланированные задания" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Невыполненные Задачи" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "Код задачи" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "Уникальный ID задачи" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Заблокировать" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Время блокировки" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Название задачи" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Функция" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Имя функции" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Аргументы" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Аргументы задачи" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Имя файла" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Наименование параметра" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Значение параметра" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Описание детали поставщика" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Описание детали поставщика" msgid "Note" msgstr "Запись" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "базовая стоимость" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "Кол-во в упаковке" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "множественные" @@ -5204,7 +5212,7 @@ msgstr "Номер строки" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Данные" @@ -6557,12 +6565,12 @@ msgstr "Используется в" msgid "Building" msgstr "Производится" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Минимальная Стоимость" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Максимальная Стоимость" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Общий запас" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Категория детали" @@ -6867,7 +6875,7 @@ msgstr "Часть с таким именем, IPN и ревизией уже с msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Наименование детали" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "Последняя инвентаризация" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Продать несколько" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Минимальная Стоимость BOM" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Максимальная Стоимость BOM" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Количество Элементов" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "Дата" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Дополнительные Записи" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Отчет" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Количество Деталей" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Название теста" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Введите имя для теста" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Описание теста" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Введите описание для этого теста" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Включено" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Требуется" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Требуется значение" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Варианты" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Название параметра" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "Описание параметра" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "Чекбокс" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Родительская деталь" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Шаблон параметра" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Значение Параметра" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Значение по умолчанию" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "Код или наименование детали" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Значение IPN" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Уровень" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "Уровень BOM" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Выберите родительскую деталь" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Суб-деталь" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Выбрать деталь для использования в BOM" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Эта позиция - расходник. (она не отслеживается в заказах на производство)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Перерасход" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Расчетное количество перерасходов производства (абсолютное или процентное)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Записи о позиции BOM" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Контрольная сумма" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Проверен" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Складские позиции для разновидностей деталей могут быть использованы для этой позиции BOM" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "Для отслеживаемых деталей количество должно быть целым числом" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Позиция BOM-родителя" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Замена детали" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Часть 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Часть 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Выберите связанную часть" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "Изображение детали не найдено" msgid "Part Pricing" msgstr "Цена Детали" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "Исходная ссылка" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "Результаты тестирования" msgid "Test" msgstr "Тестирование" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Результат" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "Серийные номера уже существуют" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Результат тестирования" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Записи Тестирования" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po index 05c492fe69..84a12d7272 100644 --- a/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sk/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -65,9 +65,9 @@ msgstr "" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po index 8891feadc5..720fe6add8 100644 --- a/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sl/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -65,9 +65,9 @@ msgstr "Vnesi datum" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Kitajščina (tradicionalno)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Prijavite se v aplikacijo" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Podvojena imena ne morejo obstajati pod istim nadrejenim elementom" msgid "Invalid choice" msgstr "Nedovoljena izbira" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Ime" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Napaka strežnika" msgid "An error has been logged by the server." msgstr "Zaznana napaka na strežniku." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Mora biti veljavna številka" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Izberite valuto med razpoložljivimi možnostmi" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Nimate dovoljenja za spreminjanje vloge tega uporabnika." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Samo superuporabniki lahko ustvarijo nove uporabnike" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Vaš račun je bil ustvarjen." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Za prijavo uporabite funkcijo ponastavitve gesla" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Dobrodošli v InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Neveljavna vrednost" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Podatki datoteke" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Izberite datoteke za naložiti" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Nepodprta vrsta datotek" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Datoteka je prevelika" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "V datoteki ni bilo najdenih stolpcev" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "V datoteki ni bilo njadenih vrstic" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Niso bile podane vrste s podatki" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Niso bili podani stolpci s podatki" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Manjka obvezni stolpec: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Dvojni stolpec: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Oddaljena slika" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "Povezava do oddaljene slike" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Prenos slik iz oddaljene povezave ni omogočen" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Izgradnja mora biti najprej preklicana, nato je lahko izbrisana" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Izgradnja mora biti najprej preklicana, nato je lahko izbrisana" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "Nalog izgradnje" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Referenca naloga izgradnje" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Nalog izgradnje na katerega se ta izgradnaj nanaša" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "Zunanja povezava" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Zunanja povezava" @@ -1110,7 +1110,7 @@ msgstr "Nalog izgradnje {build} je dokončan" msgid "A build order has been completed" msgstr "Nalog izgradnej dokončan" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Ni določena izgradnja" @@ -1122,37 +1122,37 @@ msgstr "Igradnja je že dokončana" msgid "Build output does not match Build Order" msgstr "Izgradnja se ne ujema s nalogom izdelave" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "Količina" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Izdelana postavka mora imeti izgradnjo, če je glavni del označen kot sledljiv" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Prestavljena zaloga ({q}) ne sme presegati zaloge ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Preveč zaloge je prestavljene" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Prestavljena količina mora biti večja od 0" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Količina za zalogo s serijsko številko mora biti 1" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "Postavka zaloge" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Izvorna postavka zaloge" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Količina zaloge za prestavljanje za izgradnjo" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Inštaliraj v" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Destinacija postavke zaloge" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Uporabnik" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "Povezava" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Priloga" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Manjka datoteka" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Manjka zunanja povezava" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Izberite prilogo" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentar" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Ime datoteke" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po index d90490eb27..86aaf65ea3 100644 --- a/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sr/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -65,9 +65,9 @@ msgstr "Unesite datum" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Kineski (Tradicionalni)" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Dvostruka imena ne mogu postojati pod istom nadredjenom grupom" msgid "Invalid choice" msgstr "Nevažeći izvor" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Ime" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Greška servera" msgid "An error has been logged by the server." msgstr "Server je zabležio grešku." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Mora biti važeći broj" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Odaberite valutu među dostupnim opcijama" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Nemate dozvolu za promenu ove korisničke uloge." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Samo superkorisnici mogu kreirati nove korisnike" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Nevažeća vrednost" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Datoteka" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Odaberite datoteku za učitavanje" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Nije podržan tip datoteke" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Prevelika datoteka" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Nisu pronađene kolone podataka u datoteci" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Nisu pronađeni redovi podataka u datoteci" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Nisu navedeni redovi podataka" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Nisu obezbeđene kolone podataka" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Nedostaje potrebna kolona: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplicirana kolona: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Udaljena slika" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL udaljene slike" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Preuzimanje slika s udaljenog URL-a nije omogućeno" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "Nalog za izradu" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Reference naloga za pravljenje" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Link za eksterni URL" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Korisnik" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Prilog" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Nedostaje datoteka" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Nedostaje eksterni link" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Izaberite datoteku za prilog" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Komentar" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Ime datoteke" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po index f5f843f1d4..823d569d6f 100644 --- a/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/sv/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -65,9 +65,9 @@ msgstr "Ange datum" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Kinesiska (Traditionell)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Logga in på appen" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "Ogiltigt val" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Namn" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Serverfel" msgid "An error has been logged by the server." msgstr "Ett fel har loggats av servern." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Måste vara ett giltigt nummer" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Välj valuta från tillgängliga alternativ" msgid "Username" msgstr "Användarnamn" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Förnamn" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Förnamn på användaren" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Efternamn" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Efternamn på användaren" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Avsändarens E-postadress" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Personal" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Har den här användaren behörighet för personal" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Superanvändare" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Är den här användaren en superanvändare" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Är den här användaren en superanvändare" msgid "Active" msgstr "Aktiv" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Är detta användarkonto aktivt" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Du har inte behörighet att ändra denna användarrollen." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Endast superanvändare kan skapa nya användare" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Ditt konto har skapats." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Använd funktionen för lösenordsåterställning för att logga in" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Välkommen till InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Ogiltigt värde" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Datafil" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Välj fil för uppladdning" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Filtypen stöds inte" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Filen är för stor" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Inga kolumner hittades i filen" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Inga rader hittades i filen" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Inga rader angivna" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Inga datakolumner har angetts" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Saknar obligatorisk kolumn: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Duplicerad kolumn: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Fjärransluten bild" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL för fjärrbildsfil" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Nedladdning av bilder från fjärr-URL är inte aktiverad" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Tillverkningen måste avbrytas innan den kan tas bort" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Tillverkningen måste avbrytas innan den kan tas bort" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Allokerad" msgid "Available" msgstr "Tillgänglig" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Tillgänglig" msgid "Build Order" msgstr "Byggorder" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Tillverknings order referens" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Tillverknings order till vilken detta produkt är tilldelad" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "Extern länk" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Länk till extern URL" @@ -1110,7 +1110,7 @@ msgstr "Tillverknings order {build} har slutförts" msgid "A build order has been completed" msgstr "En tillverknings order har slutförts" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Ingen byggutgång angiven" @@ -1122,37 +1122,37 @@ msgstr "Byggutgång är redan slutförd" msgid "Build output does not match Build Order" msgstr "Byggutgång matchar inte bygg order" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "Antal" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Byggobjekt måste ange en byggutgång, eftersom huvuddelen är markerad som spårbar" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Tilldelad kvantitet ({q}) får inte överstiga tillgängligt lagersaldo ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Lagerposten är överallokerad" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Allokeringsmängden måste vara större än noll" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Antal måste vara 1 för serialiserat lager" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "Artikel i lager" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Källa lagervara" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Lagersaldo att allokera för att bygga" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Installera till" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Destination lagervara" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "Ofullständig produktion" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "dagar" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Aktivera projektkoder" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Visa nyheter" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Sök efter artiklar" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Sök efter leverantörsartikel" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Sök efter tillverkarartikel" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Datumformat" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Användare" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "Länk" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "Bild" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Bilaga" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Saknad fil" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Extern länk saknas" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Välj fil att bifoga" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Kommentar" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "Filstorlek" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" -msgstr "" +msgstr "Etikett" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "Färg" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Schemalagda uppgifter" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Filnamn" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "Datum" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po index 5d33e833aa..f27e94a39a 100644 --- a/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/th/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -65,9 +65,9 @@ msgstr "ป้อนวันที่" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "ชื่อ" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "เกิดข้อผิดพลาดที่เซิร์ฟเ msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "ต้องเป็นตัวเลข" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "ยินดีต้อนรับเข้าสู่ Inventree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "ไฟล์ข้อมูล" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "เลือกไฟล์ข้อมูลที่จะอัปโหลด" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "ไฟล์มีขนาดใหญ่เกินไป" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "จำนวนต้องมีค่ามากกว่า 0" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "ผู้ใช้งาน" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "ลิงก์" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "ไฟล์แนบ" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "ไม่พบไฟล์" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "เลือกไฟล์ที่ต้องการแนบ" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "ความคิดเห็น" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "ชื่อไฟล์" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po index d27a18301c..4e2121f145 100644 --- a/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/tr/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-10 18:16\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -65,9 +65,9 @@ msgstr "Tarih giriniz" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Çince (Geleneksel)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Uygulamaya giriş yap" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Aynı kaynak altında birden fazla aynı isim kullanılamaz" msgid "Invalid choice" msgstr "Geçersiz seçim" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Adı" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Sunucu Hatası" msgid "An error has been logged by the server." msgstr "Bir hafta sunucu tarafından kayıt edildi." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Geçerli bir numara olmalı" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Var olan seçeneklerden bir döviz birimi seçin" msgid "Username" msgstr "Kullanıcı Adı" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Adı" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "Kullanıcının adı" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Soyadı" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "Kullanıcının soyadı" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Kullanıcının e-posta adresi" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Personel" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "Bu kullanıcının personel izinleri var mı" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "Süper Kullanıcı" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "Bu kullanıcı bir süper kullanıcı mı" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "Bu kullanıcı bir süper kullanıcı mı" msgid "Active" msgstr "Aktif" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "Bu kullanıcı hesabı etkin mi" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Bu kullanıcı rolünü değiştirmek için izniniz yok." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Sadece süper kullanıcılar yeni kullanıcı oluşturabilir" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Kullanıcı hesabınız oluşturulmuştur." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Giriş yapmak için lütfen şifre sıfırlama fonksiyonunu kullanınız" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "InvenTree'ye Hoşgeldiniz" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Geçersiz değer" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Veri Dosyası" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Yüklemek istediğiniz dosyayı seçin" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Desteklenmeyen dsoya tipi" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Dosya boyutu çok büyük" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Dosyada kolon bulunamadı" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Dosyada satır bulunamadı" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Dosyada satır bulunamadı" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Dosyada uygun kolon bulunamadı" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Gerekli kolon ismi eksik:'{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Tekrarlanan kolon ismi:'{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Uzaktan Görüntüler" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "Uzaktan görüntü dosya URL'si" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Uzak URL'den resim indirmek etkinleştirilmedi" @@ -759,7 +759,7 @@ msgstr "Atanılan Kişi" msgid "Build must be cancelled before it can be deleted" msgstr "Yapımın silinebilmesi için önce iptal edilmesi gerekir" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Yapımın silinebilmesi için önce iptal edilmesi gerekir" msgid "Consumable" msgstr "Sarf Malzemesi" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Ayrıldı" msgid "Available" msgstr "Mevcut" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Mevcut" msgid "Build Order" msgstr "Yapım İşi Emri" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Yapım İşi Emri Referansı" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Bu yapım işinin tahsis edildiği yapım işi emri" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Bu yapım siparişinden sorumlu kullanıcı veya grup" msgid "External Link" msgstr "Harici Bağlantı" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Harici URL'ye bağlantı" @@ -1079,7 +1079,7 @@ msgstr "Yapım Önceliği" #: build/models.py:385 msgid "Priority of this build order" -msgstr "" +msgstr "Bu yapım siparişinin önceliği" #: build/models.py:392 common/models.py:137 common/models.py:151 #: order/admin.py:18 order/api.py:128 order/models.py:298 @@ -1095,22 +1095,22 @@ msgstr "Proje Kodu" #: build/models.py:393 msgid "Project code for this build order" -msgstr "" +msgstr "Bu yapım siparişi için proje kodu" #: build/models.py:652 build/models.py:779 msgid "Failed to offload task to complete build allocations" -msgstr "" +msgstr "Yapıma ayrılanları tamamlamak için boşaltma görevi başarısız oldu" #: build/models.py:674 #, python-brace-format msgid "Build order {build} has been completed" -msgstr "" +msgstr "{build} yapım siparişi tamamlandı" #: build/models.py:680 msgid "A build order has been completed" -msgstr "" +msgstr "Bir yapım siparişi tamamlandı" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Yapım işi çıktısı belirtilmedi" @@ -1122,37 +1122,37 @@ msgstr "Yapım işi çıktısı zaten tamamlanmış" msgid "Build output does not match Build Order" msgstr "Yapım işi çıktısı, yapım işi emri ile eşleşmiyor" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" -msgstr "" +msgstr "Miktar sıfırdan büyük olmalıdır" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" -msgstr "" +msgstr "Miktar çıktı miktarından büyük olamaz" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" -msgstr "" +msgstr "{serial} yapım çıktısı gerekli testleri geçemedi" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" -msgstr "" +msgstr "Yapım Siparişi Satır Ögesi" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" -msgstr "" +msgstr "Nesne yap" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "Miktar" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" -msgstr "" +msgstr "Yapım siparişi için gereken miktar" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Ana parça izlenebilir olarak işaretlendiğinden, yapım işi çıktısı için bir yapım işi ögesi belirtmelidir" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" -msgstr "" +msgstr "Ayrılan miktar ({q}) mevcut stok miktarını ({a}) aşmamalı" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Stok kalemi fazladan tahsis edilmiş" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Tahsis edilen miktar sıfırdan büyük olmalıdır" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Seri numaralı stok için miktar bir olmalı" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" -msgstr "" +msgstr "Seçilen stok ögesi malzeme listesi satırıyla eşleşmiyor" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,64 +1241,64 @@ msgstr "" msgid "Stock Item" msgstr "Stok Kalemi" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Kaynak stok kalemi" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Yapım işi için tahsis edilen stok miktarı" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Kurulduğu yer" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Hedef stok kalemi" #: build/serializers.py:107 msgid "Build Level" -msgstr "" +msgstr "Yapım Düzeyi" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" -msgstr "" +msgstr "Parça Adı" #: build/serializers.py:127 msgid "Project Code Label" -msgstr "" +msgstr "Proje Kodu Etiketi" #: build/serializers.py:133 msgid "Create Child Builds" -msgstr "" +msgstr "Alt Yapımlar Oluştur" #: build/serializers.py:134 msgid "Automatically generate child build orders" -msgstr "" +msgstr "Alt yapım siparişlerini otomatik olarak -üret" #: build/serializers.py:216 build/serializers.py:968 #: templates/js/translated/build.js:1045 templates/js/translated/build.js:1498 msgid "Build Output" -msgstr "" +msgstr "Yapım Çıktısı" #: build/serializers.py:228 msgid "Build output does not match the parent build" -msgstr "" +msgstr "Yapım çıktısı üst yapım ile eşleşmiyor" #: build/serializers.py:232 msgid "Output part does not match BuildOrder part" -msgstr "" +msgstr "Çıktı parçası Yapım Siparişi parçası ile eşleşmiyor" #: build/serializers.py:236 msgid "This build output has already been completed" -msgstr "" +msgstr "Bu yapım çıktısı zaten tamamlandı" #: build/serializers.py:247 msgid "This build output is not fully allocated" -msgstr "" +msgstr "Bu yapım çıktısı tam ayrılmadı" #: build/serializers.py:267 build/serializers.py:314 msgid "Enter quantity for build output" @@ -1306,11 +1306,11 @@ msgstr "Yapım işi çıktısı için miktarını girin" #: build/serializers.py:335 msgid "Integer quantity required for trackable parts" -msgstr "" +msgstr "İzlenebilir parçalar için tamsayı miktar gerekir" #: build/serializers.py:338 msgid "Integer quantity required, as the bill of materials contains trackable parts" -msgstr "" +msgstr "Malzeme listesi izlenebilir parçalar içerdiğinden tamsayı miktar gereklidir" #: build/serializers.py:353 order/serializers.py:679 order/serializers.py:1468 #: stock/serializers.py:687 templates/js/translated/purchase_order.js:1154 @@ -1344,27 +1344,27 @@ msgstr "Konum" #: build/serializers.py:360 msgid "Stock location for build output" -msgstr "" +msgstr "Yapım çıktısı için stok konumu" #: build/serializers.py:374 msgid "Auto Allocate Serial Numbers" -msgstr "" +msgstr "Seri Numaralarını Otomatik Ayır" #: build/serializers.py:375 msgid "Automatically allocate required items with matching serial numbers" -msgstr "" +msgstr "Gerekli ögeleri eşleşen seri numaralarıyla otomatik ayır" #: build/serializers.py:390 msgid "Serial numbers must be provided for trackable parts" -msgstr "" +msgstr "İzlenebilir parçalar için seri numaraları sağlanmalıdır" #: build/serializers.py:415 stock/api.py:1024 msgid "The following serial numbers already exist or are invalid" -msgstr "" +msgstr "Şu seri numaraları zaten varlar veya geçersizler" #: build/serializers.py:462 build/serializers.py:524 build/serializers.py:613 msgid "A list of build outputs must be provided" -msgstr "" +msgstr "Bir yapım çıktıları listesi sağlanmalıdır" #: build/serializers.py:501 msgid "Stock location for scrapped outputs" @@ -1512,7 +1512,7 @@ msgstr "Öge stokta olmalıdır" #: build/serializers.py:993 order/serializers.py:1355 #, python-brace-format msgid "Available quantity ({q}) exceeded" -msgstr "Kullanılabilir miktar ({q}) aşıldı" +msgstr "Mevcut miktar ({q}) aşıldı" #: build/serializers.py:999 msgid "Build output must be specified for allocation of tracked parts" @@ -1560,7 +1560,7 @@ msgstr "İsteğe Bağlı Ögeler" #: build/serializers.py:1120 msgid "Allocate optional BOM items to build order" -msgstr "Sipariş yapmak için isteğe bağlı BOM ögelerini ayır" +msgstr "Sipariş yapmak için isteğe bağlı ML ögelerini ayır" #: build/serializers.py:1142 msgid "Failed to start auto-allocation task" @@ -1585,7 +1585,7 @@ msgstr "Yapım Referansı" #: build/serializers.py:1229 msgid "BOM Reference" -msgstr "BOM Referansı" +msgstr "ML Referansı" #: build/serializers.py:1230 company/models.py:849 #: company/templates/company/supplier_part.html:160 order/serializers.py:691 @@ -1600,27 +1600,27 @@ msgid "Packaging" msgstr "Paketleme" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "Parça ID" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "Parça DPN" #: build/serializers.py:1236 build/serializers.py:1326 part/admin.py:45 #: part/stocktake.py:220 msgid "Part Description" -msgstr "" +msgstr "Parça Açıklaması" #: build/serializers.py:1239 msgid "BOM Part ID" -msgstr "" +msgstr "ML Parça Kimliği" #: build/serializers.py:1240 msgid "BOM Part Name" -msgstr "" +msgstr "ML Parça Adı" #: build/serializers.py:1243 #: report/templates/report/inventree_return_order_report.html:25 @@ -1642,19 +1642,19 @@ msgstr "Seri Numara" #: templates/js/translated/build.js:1020 templates/js/translated/build.js:1167 #: templates/js/translated/build.js:2519 msgid "Allocated Quantity" -msgstr "" +msgstr "Ayrılan Miktar" #: build/serializers.py:1257 stock/templates/stock/item_base.html:336 msgid "Available Quantity" -msgstr "" +msgstr "Mavcut Miktar" #: build/serializers.py:1327 msgid "Part Category ID" -msgstr "" +msgstr "Parça Sınıfı Kimliği" #: build/serializers.py:1328 msgid "Part Category Name" -msgstr "" +msgstr "Parça Sınıfı Adı" #: build/serializers.py:1335 common/models.py:1515 part/admin.py:113 #: part/models.py:1178 templates/js/translated/table_filters.js:150 @@ -1665,23 +1665,23 @@ msgstr "Takip Edilebilir" #: build/serializers.py:1336 msgid "Inherited" -msgstr "" +msgstr "Miras Alındı" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Çeşide İzin Ver" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" -msgstr "" +msgstr "ML Ögesi" #: build/serializers.py:1350 build/templates/build/detail.html:236 #: build/templates/build/sidebar.html:16 templates/js/translated/index.js:130 msgid "Allocated Stock" -msgstr "" +msgstr "Ayrılan Stok" #: build/serializers.py:1355 order/serializers.py:1179 part/admin.py:132 #: part/bom.py:186 part/serializers.py:918 part/serializers.py:1621 @@ -1690,35 +1690,35 @@ msgstr "" #: templates/js/translated/part.js:2155 #: templates/js/translated/table_filters.js:177 msgid "On Order" -msgstr "" +msgstr "Siparişte" #: build/serializers.py:1360 order/serializers.py:1180 part/serializers.py:1623 #: templates/js/translated/build.js:2811 #: templates/js/translated/table_filters.js:367 msgid "In Production" -msgstr "" +msgstr "Üretimde" #: build/serializers.py:1365 part/bom.py:185 part/serializers.py:1648 #: part/templates/part/part_base.html:192 #: templates/js/translated/sales_order.js:1929 msgid "Available Stock" -msgstr "" +msgstr "Mevcut Stok" #: build/serializers.py:1369 msgid "Available Substitute Stock" -msgstr "" +msgstr "Mevcut Yedek Stok" #: build/serializers.py:1370 msgid "Available Variant Stock" -msgstr "" +msgstr "Mevcut Turev Stoku" #: build/serializers.py:1371 msgid "Total Available Stock" -msgstr "" +msgstr "Toplam Mevcut Stok" #: build/serializers.py:1372 part/serializers.py:925 msgid "External Stock" -msgstr "" +msgstr "Harici Stok" #: build/status_codes.py:11 generic/states/tests.py:21 #: generic/states/tests.py:131 order/status_codes.py:12 @@ -1734,7 +1734,7 @@ msgstr "Üretim" #: build/status_codes.py:13 order/status_codes.py:14 order/status_codes.py:49 #: order/status_codes.py:79 msgid "On Hold" -msgstr "" +msgstr "Beklemede" #: build/status_codes.py:14 order/status_codes.py:16 order/status_codes.py:51 #: order/status_codes.py:82 @@ -1751,7 +1751,7 @@ msgstr "Tamamlandı" #: build/tasks.py:180 msgid "Stock required for build order" -msgstr "" +msgstr "Yapım siparişi için gereken stok" #: build/tasks.py:233 msgid "Overdue Build Order" @@ -2145,19 +2145,19 @@ msgstr "Tamamlanmamış Çıktılar" msgid "Test Statistics" msgstr "Test İstatistikleri" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "Link Olanlar" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "Dosya Olanlar" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "Kullanıcının bu ekleri silmek için izni yok" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "Kullanıcının bu eki silmek için izni yok" @@ -2350,7 +2350,7 @@ msgstr "Döviz kurlarını şu sıklıkla güncelle (etkisizleştirmek için sı #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "günler" @@ -2468,59 +2468,59 @@ msgstr "Web arayüzünde barkod tarayıcı desteğini etkinleştir" #: common/models.py:1402 msgid "Barcode Input Delay" -msgstr "" +msgstr "Barkod Girdi Gecikmesi" #: common/models.py:1403 msgid "Barcode input processing delay time" -msgstr "" +msgstr "Barkod girdi işleme gecikme süresi" #: common/models.py:1409 msgid "Barcode Webcam Support" -msgstr "" +msgstr "Barkod Web Kamerası Desteği" #: common/models.py:1410 msgid "Allow barcode scanning via webcam in browser" -msgstr "" +msgstr "Tarayıcıda web kamerası aracılığıyla barkod taramaya izin ver" #: common/models.py:1415 msgid "Barcode Show Data" -msgstr "" +msgstr "Barkod Verisini Göster" #: common/models.py:1416 msgid "Display barcode data in browser as text" -msgstr "" +msgstr "Barkod verisini tarayıcıda metin olarak görüntüle" #: common/models.py:1421 msgid "Barcode Generation Plugin" -msgstr "" +msgstr "Barkod Üreteci Eklentisi" #: common/models.py:1422 msgid "Plugin to use for internal barcode data generation" -msgstr "" +msgstr "Dahili barkod üretimi için kullanılacak eklenti" #: common/models.py:1427 msgid "Part Revisions" -msgstr "" +msgstr "Parça Revizyonları" #: common/models.py:1428 msgid "Enable revision field for Part" -msgstr "" +msgstr "Parça için revizyon alanını etkinleştir" #: common/models.py:1433 msgid "Assembly Revision Only" -msgstr "" +msgstr "Yalnızca Montaj Revizyonu" #: common/models.py:1434 msgid "Only allow revisions for assembly parts" -msgstr "" +msgstr "Yalnızca montaj parçaları için revizyona izin ver" #: common/models.py:1439 msgid "Allow Deletion from Assembly" -msgstr "" +msgstr "Montajdan Silmeye İzin Ver" #: common/models.py:1440 msgid "Allow deletion of parts which are used in an assembly" -msgstr "" +msgstr "Bir montajda kullanılan parçaları silmeye izin ver" #: common/models.py:1445 msgid "IPN Regex" @@ -2548,27 +2548,27 @@ msgstr "Parçayı düzenlerken DPN değiştirmeye izin ver" #: common/models.py:1461 msgid "Copy Part BOM Data" -msgstr "" +msgstr "Parça ML Verisini Kopyala" #: common/models.py:1462 msgid "Copy BOM data by default when duplicating a part" -msgstr "" +msgstr "Bir parçayo çoğaltırken varsayılan olarak ML verisini kopyala" #: common/models.py:1467 msgid "Copy Part Parameter Data" -msgstr "" +msgstr "Parça Parametre Verisini Kopyala" #: common/models.py:1468 msgid "Copy parameter data by default when duplicating a part" -msgstr "" +msgstr "Bir parçayı çoğaltırken varsayılan olarak parametre verisini kopyala" #: common/models.py:1473 msgid "Copy Part Test Data" -msgstr "" +msgstr "Parça Test Verisini Kopyala" #: common/models.py:1474 msgid "Copy test data by default when duplicating a part" -msgstr "" +msgstr "Bir parçayı çoğaltırken varsayılan olarak test verisini kopyala" #: common/models.py:1479 msgid "Copy Category Parameter Templates" @@ -2578,7 +2578,7 @@ msgstr "Kategori Paremetre Sablonu Kopyala" msgid "Copy category parameter templates when creating a part" msgstr "Parça oluştururken kategori parametre şablonlarını kopyala" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -2637,11 +2637,11 @@ msgstr "Parçalar varsayılan olarak sanaldır" #: common/models.py:1527 msgid "Show Import in Views" -msgstr "" +msgstr "Görünümlerde İçe Aktarmayı Göster" #: common/models.py:1528 msgid "Display the import wizard in some part views" -msgstr "" +msgstr "Bazı parça görünümlerinde içe aktarma sihirbazını görüntüle" #: common/models.py:1533 msgid "Show related parts" @@ -2649,39 +2649,39 @@ msgstr "İlgili parçaları göster" #: common/models.py:1534 msgid "Display related parts for a part" -msgstr "" +msgstr "Bir parça için ilgili parçaları göster" #: common/models.py:1539 msgid "Initial Stock Data" -msgstr "" +msgstr "Başlangıç Stok Verisi" #: common/models.py:1540 msgid "Allow creation of initial stock when adding a new part" -msgstr "" +msgstr "Yeni bir parça eklerken başlangıç stoku oluşturmaya izin ver" #: common/models.py:1545 templates/js/translated/part.js:108 msgid "Initial Supplier Data" -msgstr "" +msgstr "Başlangıç Sağlayıcı Verisi" #: common/models.py:1547 msgid "Allow creation of initial supplier data when adding a new part" -msgstr "" +msgstr "Yeni bir parça oluştururken başlangıç sağlayıcı verisi oluşturmaya izin ver" #: common/models.py:1553 msgid "Part Name Display Format" -msgstr "" +msgstr "Parça Adı Görüntüleme Biçimi" #: common/models.py:1554 msgid "Format to display the part name" -msgstr "" +msgstr "Parça adını görüntüleme biçimi" #: common/models.py:1560 msgid "Part Category Default Icon" -msgstr "" +msgstr "Parça Sınıfının Varsayılan Simgesi" #: common/models.py:1561 msgid "Part category default icon (empty means no icon)" -msgstr "" +msgstr "Parça sınıfı için varsayılan simge (boş bırakılırsa simge kullanılmaz)" #: common/models.py:1566 msgid "Enforce Parameter Units" @@ -2886,15 +2886,15 @@ msgstr "Stok öğelerinin son kullanma tarihi geçmeden eskimiş sayıldığı g #: common/models.py:1756 msgid "Build Expired Stock" -msgstr "" +msgstr "Yapımın Süresi Geçmiş Stoku" #: common/models.py:1757 msgid "Allow building with expired stock" -msgstr "" +msgstr "Süresi geçmiş stok ile yapıma izin ver" #: common/models.py:1762 msgid "Stock Ownership Control" -msgstr "" +msgstr "Stok Sahipliği Kontrolü" #: common/models.py:1763 msgid "Enable ownership control over stock locations and items" @@ -2902,48 +2902,48 @@ msgstr "Stok konumu ve ögeler üzerinde sahiplik kontrolünü etkinleştirin" #: common/models.py:1768 msgid "Stock Location Default Icon" -msgstr "" +msgstr "Varsayılan Stok Konumu Simgesi" #: common/models.py:1769 msgid "Stock location default icon (empty means no icon)" -msgstr "" +msgstr "Stok konumu için varsayılan simge (boşsa simge yok demektir)" #: common/models.py:1774 msgid "Show Installed Stock Items" -msgstr "" +msgstr "Kurulu Stok Ögelerini Göster" #: common/models.py:1775 msgid "Display installed stock items in stock tables" -msgstr "" +msgstr "Stok tablolarında kurulu stok ögelerini göster" #: common/models.py:1780 msgid "Check BOM when installing items" -msgstr "" +msgstr "Ögelerin kurulumunu yaparken ML'i kontrol et" #: common/models.py:1782 msgid "Installed stock items must exist in the BOM for the parent part" -msgstr "" +msgstr "Kurulu stok ögeleri üst parçanın ML'nde mevcut olmalıdır" #: common/models.py:1788 msgid "Allow Out of Stock Transfer" -msgstr "" +msgstr "Stok Dışı Aktarıma İzin Ver" #: common/models.py:1790 msgid "Allow stock items which are not in stock to be transferred between stock locations" -msgstr "" +msgstr "Stokta olmayan ögelerin stok konumları arasında aktarılmasına izin ver" #: common/models.py:1796 msgid "Build Order Reference Pattern" -msgstr "" +msgstr "Yapım Siparişi Referans Kalıbı" #: common/models.py:1798 msgid "Required pattern for generating Build Order reference field" -msgstr "" +msgstr "Yapım Siparişi referans alanını üretmek için gerekli kalıp" #: common/models.py:1804 common/models.py:1860 common/models.py:1882 #: common/models.py:1918 msgid "Require Responsible Owner" -msgstr "" +msgstr "Sorumlu Sahip Gerektir" #: common/models.py:1805 common/models.py:1861 common/models.py:1883 #: common/models.py:1919 @@ -3148,43 +3148,43 @@ msgstr "" #: common/models.py:2007 msgid "Automatically fill out user-details from SSO account-data" -msgstr "" +msgstr "Kullanıcı ayrıntılarını TOA hesabı verisinden otomatik olarak doldur" #: common/models.py:2013 msgid "Mail twice" -msgstr "" +msgstr "Postayı iki kez gir" #: common/models.py:2014 msgid "On signup ask users twice for their mail" -msgstr "" +msgstr "Hesap oluştururken kullanıcıların postalarını iki kez girmelerini iste" #: common/models.py:2019 msgid "Password twice" -msgstr "" +msgstr "Şifreyi iki kez gir" #: common/models.py:2020 msgid "On signup ask users twice for their password" -msgstr "" +msgstr "Hesap oluştururken kullanıcıların şifrelerini iki kez girmesini iste" #: common/models.py:2025 msgid "Allowed domains" -msgstr "" +msgstr "Alanlara izin ver" #: common/models.py:2027 msgid "Restrict signup to certain domains (comma-separated, starting with @)" -msgstr "" +msgstr "Belirli alanlara hesap açmayı kısıtla (virgülle ayrılmış, @ ile başlayan)" #: common/models.py:2033 msgid "Group on signup" -msgstr "" +msgstr "Hesap oluştururken grup" #: common/models.py:2035 msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." -msgstr "" +msgstr "Yeni kullanıcıların kayıt sırasında atanacağı grup. Eğer TOA grup eşitlemesi etkinse, yalnızca ıdP'den hiçbir grup atanamazsa bu grup ayarlanır." #: common/models.py:2041 msgid "Enforce MFA" -msgstr "" +msgstr "ÇFKD'yi Zorunlu Kıl" #: common/models.py:2042 msgid "Users must use multifactor security." @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Formlarda Miktarı Göster" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Kullanıcı" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "Fiyat" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "Bağlantı" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "Resim" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Ek" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Eksik dosya" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Bozuk dış bağlantı" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Eklenecek dosyayı seç" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Yorum" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Dosya adı" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Parametre adı" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Parametre değeri" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "Not" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "temel maliyet" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "çoklu" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Parça adı" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Test Adı" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Test Açıklaması" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Etkin" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Gerekli" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "Testi geçmesi için bu gerekli mi?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "Parametre şablon adı benzersiz olmalıdır" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Parametre Şablonu" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Bu malzeme listesi, çeşit parçalar listesini kalıtsalıdır" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Çeşit parçaların stok kalemleri bu malzeme listesinde kullanılabilir" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Şablon için geçerli bir nesne sağlanmadı" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "Miktar seri numaları ile eşleşmiyor" msgid "Serial numbers already exist" msgstr "Seri numaraları zaten mevcut" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "Stok kalemi stokta olmadığı için taşınamaz" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po index 58445e9d92..2330612e1e 100644 --- a/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/uk/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -65,9 +65,9 @@ msgstr "Введіть дату" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Китайська (Традиційна)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Увійти в додаток" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Ім`я" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Прізвище" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "Адреса електронної пошти користувача" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "Персонал" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po index 60fd1cf40e..484bbffde7 100644 --- a/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/vi/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -65,9 +65,9 @@ msgstr "Nhập ngày" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "Tiếng Trung (Phồn thể)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] Đăng nhập vào ứng dụng" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "Tên trùng lặp không thể tồn tại trong cùng cấp thư mục" msgid "Invalid choice" msgstr "Lựa chọn sai" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "Tên" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "Lỗi máy chủ" msgid "An error has been logged by the server." msgstr "Lỗi đã được ghi lại bởi máy chủ." -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "Phải là một số hợp lệ" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "Chọn tiền tệ trong các tùy chọn đang có" msgid "Username" msgstr "Tên người dùng" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "Tên" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "Họ" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "Hoạt động" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "Bạn không có quyền thay đổi vai trò của người dùng này." -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "Chỉ có siêu người dùng là có thể tạo người dùng mới" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "Tài khoản của bạn đã được tạo." -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "Xin hãy sử dụng chức năng tạo lại mật khẩu để đăng nhập" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "Chào mừng đến với InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "Giá trị không hợp lệ" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "Tập tin dữ liệu" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "Chọn tệp tin để tải lên" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "Loại tệp tin không được hỗ trợ" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "Tệp tin quá lớn" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "Không tìm thấy cột nào trong tệp tin" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "Không tìm thấy dòng nào trong tệp tin" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "Chưa có dữ liệu" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "Chưa cung cấp cột dữ liệu" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "Thiếu cột bắt buộc: '{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "Nhân bản cột: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "Hình ảnh từ xa" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "URL của tệp hình ảnh bên ngoài" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "Chức năng tải hình ảnh từ URL bên ngoài không được bật" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "Bạn dựng phải được hủy bỏ trước khi có thể xóa được" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "Bạn dựng phải được hủy bỏ trước khi có thể xóa đư msgid "Consumable" msgstr "Vật tư tiêu hao" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "Đã cấp phát" msgid "Available" msgstr "Có sẵn" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "Có sẵn" msgid "Build Order" msgstr "Tạo đơn hàng" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "Tham chiếu đơn đặt bản dựng" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "Đơn đặt bản dựng với bản dựng này đã được phân b #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "Người dùng hoặc nhóm có trách nhiệm với đơn đặt bản msgid "External Link" msgstr "Liên kết bên ngoài" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "Liên kết đến URL bên ngoài" @@ -1110,7 +1110,7 @@ msgstr "Đơn đặt bản dựng {build} đã được hoàn thành" msgid "A build order has been completed" msgstr "Một đơn đặt bản dựng đã được hoàn thành" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "Không có đầu ra bản dựng đã được chỉ ra" @@ -1122,37 +1122,37 @@ msgstr "Đầu ra bản dựng đã được hoàn thiện" msgid "Build output does not match Build Order" msgstr "Đầu ra bản dựng không phù hợp với đơn đặt bản dựng" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "Số lượng phải lớn hơn 0" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "Số lượng không thể lớn hơn số lượng đầu ra" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "Dựng đối tượng" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "Dựng đối tượng" msgid "Quantity" msgstr "Số lượng" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "Yêu cầu số lượng để dựng đơn đặt" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "Xây dựng mục phải xác định đầu ra, bởi vì sản phẩm chủ được đánh dấu là có thể theo dõi" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "Số lượng được phân bổ ({q}) không thể vượt quá số lượng có trong kho ({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "Kho hàng đã bị phân bổ quá đà" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "Số lượng phân bổ phải lớn hơn 0" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "Số lượng phải là 1 cho kho sê ri" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "Hàng trong kho đã chọn không phù hợp với đường BOM" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "Hàng trong kho đã chọn không phù hợp với đường BOM" msgid "Stock Item" msgstr "Kho hàng" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "Kho hàng gốc" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "Số lượng kho hàng cần chỉ định để xây dựng" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "Cài đặt vào" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "Kho hàng đích" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "Tên sản phẩm" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "Đóng gói" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "ID sản phẩm" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "IPN sản phẩm" @@ -1667,13 +1667,13 @@ msgstr "Có thể theo dõi" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "Cho phép biến thể" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "Mục BOM" @@ -2145,19 +2145,19 @@ msgstr "Đầu ra chưa hoàn thiện" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "Mức độ thường xuyên để cập nhật tỉ giá hối đoái ( #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "ngày" @@ -2578,7 +2578,7 @@ msgstr "Sao chéo mẫu tham số danh mục" msgid "Copy category parameter templates when creating a part" msgstr "Sao chéo mẫu tham số danh mục khi tạo 1 sản phẩm" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "Bật phần mở rộng để trả lời sự kiện bên trong" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "Bật mã dự án" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "Bật mã dự án để theo dõi dự án" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "Chức năng kiểm kê" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "Bật chức năng kiểm kê theo mức độ ghi nhận kho và tính toán giá trị kho" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "Ngoại trừ vị trí bên ngoài" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "Loại trừ hàng trong kho thuộc địa điểm bên ngoài ra khỏi tính toán kiểm kê" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "Giai đoạn kiểm kê tự động" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "Số ngày giữa ghi chép kiểm kê tự động (đặt không để tắt)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "Khoảng thời gian xóa báo cáo" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "Báo cáo kiểm kê sẽ bị xóa sau số ngày xác định" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "Hiển thị tên đầy đủ của người dùng" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "Hiển thị tên đầy đủ thay vì tên đăng nhập" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "Khóa thiết lập (phải duy nhất - phân biệt hoa thường" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "Ẩn sản phẩm ngừng hoạt động" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "Ẩn sản phẩm bị tắt trong kết quả trình bày tại trang chủ" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "Hiện sản phẩm đã đăng ký" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "Hiện sản phẩm đã đăng ký trên trang chủ" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "Hiện danh mục đã đăng ký" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "Hiện danh mục sản phẩm đã đăng ký trên trang chủ" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "Hiển thị nguyên liệu mới nhất" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "Hiển thị nguyên liệu mới nhất trên trang chủ" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "Hiện BOM chờ xác thực tại trang chủ" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "Hiện thay đổi kho hàng gần đây" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "Hiện hàng trong kho được thay đổi gần nhất trên trang chủ" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "Hiển thị hàng còn ít" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "Hiển thị hàng hóa còn ít tại trang chủ" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "Hiển thị hết hàng" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "Hiển thị hàng hóa đã bán hết tại trang chủ" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "Hiển thị hàng cần thiết" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "Hiện hàng trong kho cần thiết cho xây dựng tại trang chủ" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "Bán kho quá hạn" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "Hiển thị hàng hóa đã quá hạn trên trang chủ" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "Hiện kho hàng ế" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "Hiện hàng trong kho bị ế trên trang chủ" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "Hiện bản dựng chờ xử lý" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "Hiện bản dựng chờ xử lý trên trang chủ" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "Hiện bản dựng quá hạn" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "Hiện bản dựng quá hạn trên trang chủ" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "Hiện PO nổi bật" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "Hiện PO nổi bật trên trang chủ" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "Hiện PO quá hạn" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "Hiện đơn mua hàng quá hạn trên trang chủ" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "Hiện đơn hàng vận chuyển nổi bật" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "Hiện đơn hàng vận chuyển nổi bật tại trang chủ" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "Hiện đơn vận chuyển quá hạn" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "Hiện đơn vận chuyển quá hạn trên trang chủ" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "Hiện đơn vận chuyển chờ xử lý" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "Hiện đơn vận chuyển chờ xử lý trên trang chủ" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "Hiện tin tức" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "Hiện tin tức trên trang chủ" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "Hiển thị nhãn cùng dòng" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "Hiển thị nhãn PDF trong trình duyệt, thay vì tải về dạng tệp tin" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "Máy in tem nhãn mặc định" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "Cấu hình máy in tem nhãn nào được chọn mặc định" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "Hiển thị báo cáo cùng hàng" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "Hiện báo cáo PDF trong trình duyệt, thay vì tải về dạng tệp tin" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "Tìm sản phẩm" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "Hiện hàng hóa trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "Tìm sản phẩm nhà cung cấp" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "Hiện sản phẩm nhà cung cấp trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "Tìm sản phẩm nhà sản xuất" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "Hiện sản phẩm nhà sản xuất trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "Ẩn sản phẩm ngừng hoạt động" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "Loại trừ sản phẩm ngưng hoạt động trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "Tìm kiếm danh mục" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "Hiện danh mục sản phẩm trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "Tìm kiếm kho" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "Hiện hàng hóa ở kho trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "Ẩn hàng hóa trong kho không có sẵn" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "Không bao gồm hàng hóa trong kho mà không sẵn sàng từ màn hình xem trước tìm kiếm" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "Tìm kiếm vị trí" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "Hiện vị trí kho hàng trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "Tìm kiếm công ty" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "Hiện công ty trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "Tìm kiếm đặt hàng xây dựng" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "Hiện đơn đặt xây dựng trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "Tìm kiếm đơn đặt mua" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "Hiện đơn đặt mua trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "Loại trừ đơn đặt mua không hoạt động" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "Loại trừ đơn đặt mua không hoạt động ra khỏi cửa sổ xem trước tìm kiếm" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "Tìm đơn đặt hàng người mua" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "Hiện đơn đặt hàng người mua trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "Loại trừ đơn đặt hàng người mua không hoạt động" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "Không bao gồm đơn đặt hàng người mua không hoạt động trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "Tìm kiếm đơn hàng trả lại" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "Hiện đơn hàng trả lại trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "Loại trừ đơn hàng trả lại không hoạt động" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "Không bao gồm đơn hàng trả lại không hoạt động trong cửa sổ xem trước tìm kiếm" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "Kết quả xem trước tìm kiếm" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "Số kết quả cần hiển thị trong từng phần của cửa sổ xem trước tìm kiếm" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "Tìm kiếm biểu thức" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "Bật tìm kiếm biểu thức chính quy trong câu truy vấn tìm kiếm" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "Tìm phù hợp toàn bộ chữ" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "Truy vấn tìm trả về kết quả phù hợp toàn bộ chữ" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "Hiện số lượng trong biểu mẫu" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "Hiển thị số lượng sản phẩm có sẵn trong một số biểu mẫu" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Phím escape để đóng mẫu biểu" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "Sử dụng phím escape để đóng mẫu biểu hộp thoại" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "Cố định điều hướng" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "Vị trí thành điều hướng là cố định trên cùng màn hình" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "Định dạng ngày" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "Định dạng ưa chuộng khi hiển thị ngày" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "Lập lịch sản phẩm" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "Hiển thị thông tin lịch sản phẩm" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "Kiểm kê sản phẩm" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "Hiển thị thông tin kiểm kê sản phẩm (nếu chức năng kiểm kê được bật)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "Độ dài chuỗi trong bảng" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "Giới hạn độ dài tối đa cho chuỗi hiển thị trong kiểu xem bảng biểu" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "Nhận báo cáo lỗi" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "Nhận thông báo khi có lỗi hệ thống" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "Người dùng" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "Số lượng giá phá vỡ" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "Số lượng giá phá vỡ" msgid "Price" msgstr "Giá" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "Đơn vị giá theo số lượng cụ thể" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "Đầu mối" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "Đầu mối tại điểm webhook được nhận" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "Tên của webhook này" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "Webhook có hoạt động không" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "Chữ ký số" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "Chữ ký số để truy cập" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "Bí mật" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "Mã bí mật dùng chung cho HMAC" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "Mã Tin nhắn" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "Định danh duy nhất cho tin nhắn này" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "Máy chủ" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "Mãy chủ từ tin nhắn này đã được nhận" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "Đầu mục" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "Đầu mục tin nhắn" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "Thân" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "Thân tin nhắn này" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "Đầu mối của tin nhắn này đã nhận được" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "Làm việc vào" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "Công việc trong tin nhắn này đã kết thúc?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "Mã" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "Tiêu đề" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "Tiêu đề" msgid "Link" msgstr "Liên kết" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "Đã công bố" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "Tác giả" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "Tóm tắt" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "Đọc" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "Tin này đã được đọc?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "Tin này đã được đọc?" msgid "Image" msgstr "Hình ảnh" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "Tệp ảnh" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "Tên đơn vị phải là một định danh hợp lệ" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "Tên đơn vị" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "Biểu tượng" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "Biểu tượng đơn vị tùy chọn" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "Định nghĩa" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "Định nghĩa đơn vị" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "Đính kèm" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "Tập tin bị thiếu" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "Thiếu liên kết bên ngoài" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "Chọn file đính kèm" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "Bình luận" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "Khóa" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "Hàng đã nhận theo đơn hàng trả lại" msgid "Error raised by plugin" msgstr "Lỗi được thông báo bởi phần mở rộng" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "Đang chạy" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "Công việc chờ xử lý" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "Tác vụ theo lịch" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "Tác vụ thất bại" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "ID tác vụ" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "ID tác vụ duy nhất" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "Khoá" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "Thời gian khóa" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "Tên công việc" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "Chức năng" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "Tên chức năng" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "Đối số" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "Đối số công việc" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "Đối số từ khóa" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "Đối số từ khóa công việc" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "Tên tập tin" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "Tên tham số" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "Giá trị tham số" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "Mô tả sản phẩm nhà cung cấp" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "Mô tả sản phẩm nhà cung cấp" msgid "Note" msgstr "Ghi chú" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "chi phí cơ sở" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "Thu phí tối thiểu (vd: phí kho bãi)" @@ -4618,7 +4626,7 @@ msgstr "Số lượng gói" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "Tổng số lượng được cung cấp trong một gói đơn. Để trống cho các hàng hóa riêng lẻ." -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "nhiều" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "Dữ liệu" @@ -6557,12 +6565,12 @@ msgstr "Sử dụng trong" msgid "Building" msgstr "Đang dựng" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "Chi phí tối thiểu" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "Chi phí tối đa" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "Tổng số lượng" msgid "Input quantity for price calculation" msgstr "Số lượng đầu ra cho tính toán giá bán" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "Danh mục sản phẩm" @@ -6867,7 +6875,7 @@ msgstr "Sản phẩm với Tên, IPN và Duyệt lại đã tồn tại." msgid "Parts cannot be assigned to structural part categories!" msgstr "Sản phẩm không thể được phân vào danh mục sản phẩm có cấu trúc!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "Tên sản phẩm" @@ -7006,159 +7014,159 @@ msgstr "Trách nhiệm chủ sở hữu cho sản phẩm này" msgid "Last Stocktake" msgstr "Kiểm kê cuối cùng" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "Bán nhiều" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "Tiền được dùng để làm đệm tính toán giá bán" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "Chi phí BOM tối thiểu" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "Chi phí thành phần sản phẩm tối thiểu" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "Chi phí BOM tối đa" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "Chi phí thành phần sản phẩm tối đa" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "Chi phí mua vào tối thiểu" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "Chi phí mua vào tối thiểu trong lịch sử" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "Chi phí mua tối đa" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "Chi phí thành phần sản phẩm tối đa trong lịch sử" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "Giá nội bộ tối thiểu" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "Chi phí tối thiểu dựa trên phá vỡ giá nội bộ" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "Giá nội bộ tối đa" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "Chi phí tối đa dựa trên phá vỡ giá nội bộ" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "Giá nhà cung ứng tối thiểu" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "Giá sản phẩm tối thiểu từ nhà cung ứng bên ngoài" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "Giá nhà cung ứng tối đa" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "Giá sản phẩm tối đã từ nhà cung ứng bên ngoài" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "Giá trị biến thể tối thiểu" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "Chi phí tối thiểu của sản phẩm biến thể đã tính" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "Chi phí biến thể tối đa" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "Chi phí tối đa của sản phẩm biến thể đã tính" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "Ghi đề chi phí tối thiểu" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "Ghi đề chi phí tối đa" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "Chi phí tối thiểu tính toán tổng thể" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "Chi phí tối đa tính toán tổng thể" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "Giá bán thấp nhất" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "Giá bán tối thiểu dựa trên phá giá" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "Giá bán cao nhất" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "Giá bán cao nhất dựa trên phá giá" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "Chi phí bán hàng tối thiểu" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "Giá bán hàng tối thiểu trong lịch sử" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "Giá bán hàng tối đa" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "Giá bán hàng tối đa trong lịch sử" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "Sản phẩm dành cho kiểm kê" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "Tổng số hàng" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "Số mục kho độc lậo tại thời điểm kiểm kê" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "Tống số kho tại thời điểm kiểm kê" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "Tống số kho tại thời điểm kiểm kê" msgid "Date" msgstr "Ngày" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "Kiểm kê đã thực hiện" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "Ghi chú bổ sung" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "Người dùng đã thực hiện đợt kiểm kê này" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "Chi phí kho tối thiểu" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "Chi phí kho tối thiểu ước tính của kho đang có" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "Chi phí kho tối đa" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "Chi phí kho tối đa ước tính của kho đang có" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "Báo cáo" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "Tệp báo cáo kiểm kê (được sinh nội bộ)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "Bộ đếm sản phẩm" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "Số sản phẩm đã được bao quát bởi kiểm kê" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "Người dùng đã yêu cầu báo cáo kiểm kê này" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "Lựa chọn phải duy nhất" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "Tên kiểm thử" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "Nhập tên cho kiểm thử" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "Mô tả kiểm thử" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "Nhập mô tả cho kiểm thử này" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "Đã bật" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "Bắt buộc" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "Kiểm thử này bắt buộc phải đạt?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "Giá trị bắt buộc" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "Kiểm thử này yêu cầu 1 giá trị khi thêm một kết quả kiểm thử?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "Yêu cầu đính kèm" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "Kiểm thử này yêu cầu tệp đính kèm khi thêm một kết quả kiểm thử?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "Lựa chọn" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "Tham số hộp kiểm tra không thể có đơn vị" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "Tham số hộp kiểm tra không thể có lựa chọn" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "Tên tham số mẫu phải là duy nhất" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "Tên tham số" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "Đơn vị vật lý cho tham số này" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "Mô tả tham số" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "Ô lựa chọn" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "Tham số này có phải là hộp kiểm tra?" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "Lựa chọn hợp lệ từ tham số này (ngăn cách bằng dấu phẩy)" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "Lựa chọn sai cho giá trị tham số" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "Sản phẩm cha" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "Mẫu tham số" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "Giá trị tham số" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "Giá trị mặc định" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "Giá trị tham số mặc định" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "Tên hoặc mã sản phẩm" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "Giá trị mã sản phẩm duy nhất" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "Giá trị IPN sản phẩm" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "Cấp độ" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "Cấp độ BOM" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "Chọn sản phẩm cha" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "Sản phẩm phụ" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "Chọn sản phẩm được dùng trong BOM" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "Số lượng BOM cho mục BOM này" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "Mục BOM này là tùy chọn" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "Mục BOM này bị tiêu hao (không được theo dõi trong đơn đặt bản dựng)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "Dư thừa" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "Số lượng bản dựng lãng phí ước tính (tuyệt đối hoặc phần trăm)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "Tham chiếu mục BOM" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "Ghi chú mục BOM" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "Giá trị tổng kiểm" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "Giá trị tổng kiểm dòng BOM" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "Đã xác minh" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "Mục BOM này là hợp lệ" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "Nhận thừa hưởng" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "Mục BOM này được thừa kế bởi BOM cho sản phẩm biến thể" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "Hàng trong kho cho sản phẩm biến thể có thể được dùng bởi mục BOM này" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "Số lượng phải là giá trị nguyên dùng cho sản phẩm có thể theo dõi được" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "Sản phẩm phụ phải được chỉ định" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "Sảm phẩm thay thế mục BOM" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "Sản phẩm thay thế không thể giống sản phẩm chủ đạo" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "Hàng hóa BOM cha" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "Sản phẩm thay thế" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "Sản phẩm 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "Sản phẩm 2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "Chọn sản phẩm liên quan" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "Không thể tạo mối quan hệ giữa một sản phẩm và chính nó" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "Đã tồn tại mối quan hệ trùng lặp" @@ -8593,7 +8601,7 @@ msgstr "Không tìm thấy ảnh sản phẩm" msgid "Part Pricing" msgstr "Định giá sản phẩm" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "Cung cấp khả năng quét mã vạch TME" msgid "The Supplier which acts as 'TME'" msgstr "Nhà cung cấp hoạt động như 'TME'" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "Cài đặt phần mở rộng thành công" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "Cài đặt phần bổ sung đến {path}" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "Phần bổ sung trao đổi tiền tệ mẫu" msgid "InvenTree Contributors" msgstr "Người đóng góp InvenTree" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "URL nguồn" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "Chưa cung cấp đối tượng hợp lệ cho bản mẫu" @@ -9518,7 +9582,7 @@ msgstr "Kết quả kiểm tra" msgid "Test" msgstr "Thử nghiệm" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "Kết quả" @@ -9892,7 +9956,7 @@ msgstr "Số lượng không khớp với số sêri" msgid "Serial numbers already exist" msgstr "Số sêri đã tồn tại" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "Mã trạng thái kho phải phù hợp" msgid "StockItem cannot be moved as it is not in stock" msgstr "Không thể xóa mặt hàng không ở trong kho" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "Ghi chú đầu vào" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "Phải cung cấp giá trị cho kiểm thử này" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "Phải tải liên đính kèm cho kiểm thử này" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "Kết quả kiểm thử" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "Giá trị đầu ra kiểm thử" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "Đính kèm kết quả kiểm thử" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "Ghi chú kiểm thử" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po index 847e814278..2158c95e85 100644 --- a/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/zh_Hans/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-10 00:20\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -65,9 +65,9 @@ msgstr "输入日期" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "中文 (繁体)" msgid "[{site_name}] Log in to the app" msgstr "[{site_name}] 登录到应用程序" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "同一個上層元件下不能有重複的名字" msgid "Invalid choice" msgstr "無效的選項" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "名稱" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "伺服器錯誤" msgid "An error has been logged by the server." msgstr "伺服器紀錄了一個錯誤。" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "必須是有效的數字" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "從可用選項中選擇貨幣" msgid "Username" msgstr "用户名" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "名" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "用户的名字(不包括姓氏)" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "姓" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "用户的姓氏" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "用户的电子邮件地址" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "职员" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "此用户是否拥有员工权限" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "超级用户" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "此用户是否为超级用户" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "此用户是否为超级用户" msgid "Active" msgstr "激活" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "此用户帐户是否已激活" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "您沒有更改這個使用者角色的權限" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "只有管理員帳戶可以建立新的使用者" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "您的帳號已經建立完成。" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "請使用重設密碼功能來登入" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "歡迎使用 InvenTree" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "无效值" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "数据文件" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "选择要上传的数据文件" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "不支持的文件类型" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "文件过大" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "在文件中没有找到列" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "在文件中没有找到数据行" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "没有提供数据行" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "没有提供数据列" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "缺少必需的列:'{name}'" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "重复列: '{col}'" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "远程图片" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "远程图片文件的 URL" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "未启用从远程 URL下载图片" @@ -759,7 +759,7 @@ msgstr "已分配到" msgid "Build must be cancelled before it can be deleted" msgstr "工單必須被取消才能被刪除" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "工單必須被取消才能被刪除" msgid "Consumable" msgstr "耗材" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "已分配" msgid "Available" msgstr "可用數量" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "可用數量" msgid "Build Order" msgstr "生產工單" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "生產工單代號" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "這張生產工單對應的上層生產工單" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "負責此生產工單的使用者或群組" msgid "External Link" msgstr "外部連結" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "外部URL連結" @@ -1110,7 +1110,7 @@ msgstr "生產工單 {build} 已經完成" msgid "A build order has been completed" msgstr "一張生產工單已經完成" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "未指定产出" @@ -1122,37 +1122,37 @@ msgstr "产出已完成" msgid "Build output does not match Build Order" msgstr "产出与生产订单不匹配" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "數量必須大於零" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "数量不能大于输出数量" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "产出 {serial} 未通过所有必要测试" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "生产订单行项目" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "生产对象" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "生产对象" msgid "Quantity" msgstr "數量" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "生產工單所需數量" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "生产项必须指定产出,因为主零件已经被标记为可追踪的" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "分配的數量({q})不能超過可用的庫存數量({a})" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "庫存品項超額分配" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "分配的數量必須大於零" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "有序號的品項數量必須為1" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "選擇的庫存品項和BOM的項目不符" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "選擇的庫存品項和BOM的項目不符" msgid "Stock Item" msgstr "庫存品項" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "來源庫存項目" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "要分配的庫存數量" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "安裝到" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "目的庫存品項" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "构建等级" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "零件名称" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "打包" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "零件编号" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "零件的内部零件号" @@ -1667,13 +1667,13 @@ msgstr "可追踪" msgid "Inherited" msgstr "已继承的" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "允许变体" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "物料清单项" @@ -2145,19 +2145,19 @@ msgstr "未完成的产出" msgid "Test Statistics" msgstr "测试统计" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "是否链接" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "是否为文件" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "用户没有权限删除此附件" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "用户没有权限删除此附件" @@ -2350,7 +2350,7 @@ msgstr "检查更新的频率(设置为零以禁用)" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "天" @@ -2578,7 +2578,7 @@ msgstr "复制类别参数模板" msgid "Copy category parameter templates when creating a part" msgstr "创建零件时复制类别参数模板" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "启用插件响应内部事件" #: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 msgid "Enable project codes" msgstr "启用项目编码" -#: common/models.py:2100 +#: common/models.py:2107 msgid "Enable project codes for tracking projects" msgstr "启用项目编码来跟踪项目" -#: common/models.py:2105 +#: common/models.py:2112 msgid "Stocktake Functionality" msgstr "盘点功能" -#: common/models.py:2107 +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "启用盘点功能以记录库存水平和计算库存值" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "排除外部地点" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "从盘点计算中排除外部地点的库存项" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "自动盘点周期" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "自动盘点记录之间的天数 (设置为零以禁用)" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "报告删除间隔" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "盘点报告将在指定天数后删除" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "显示用户全名" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "显示用户全名而不是用户名" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "启用测试站数据" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "启用测试站数据收集以获取测试结果" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "设置键 (必须是唯一的,不区分大小写" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "隐藏非活动零件" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "隐藏主页上显示的结果中的非活动零件" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "显示已订阅的零件" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "在主页上显示已订阅的零件" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "显示已订阅的类别" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "在主页上显示已订阅的零件类别" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "显示最新零件" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "在主页上显示最新零件" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "显示无效的物料清单" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "在主页上显示等待验证的物料清单" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "显示最近的库存变动" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "在主页上显示最近更改的库存项目" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "显示低库存" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "在主页上显示低库存商品" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "显示已耗尽的库存" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "在主页上显示已耗尽的库存项目" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "显示所需库存" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "在主页上显示构建所需的库存项目" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "显示过期库存" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "在主页上显示过期的库存项目" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "显示过期库存" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "在主页上显示过期库存商品" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "显示待处理的构建" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "在主页上显示待处理的构建" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "显示过期的构建" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "在主页上显示过期的构建" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "显示出色的PO" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "在主页上显示优秀的PO" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "显示过期订单" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "在主页上显示逾期订单" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "展示杰出的SO" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "在主页上显示优秀的SO" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "显示过期的SO" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "在主页上显示过期的SO" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "显示待处理的SO发货" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "在主页上显示待处理的SO发货" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "显示新闻" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "在主页上显示新闻" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "内联标签显示" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "在浏览器中显示PDF标签,而不是作为文件下载" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "默认标签打印机" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "配置默认情况下应选择哪个标签打印机" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "内联报告显示" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "在浏览器中显示PDF报告,而不是作为文件下载" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "搜索零件" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "在搜索预览窗口中显示零件" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "搜索供应商零件" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "在搜索预览窗口中显示供应商零件" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "搜索制造商零件" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "在搜索预览窗口中显示制造商零件" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "隐藏非活动零件" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "从搜索预览窗口中排除非活动零件" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "搜索分类" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "在搜索预览窗口中显示零件类别" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "搜索库存" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "在搜索预览窗口中显示库存项目" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "隐藏不可用的库存项目" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "排除搜索预览窗口中不可用的库存项目" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "搜索地点" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "在搜索预览窗口中显示库存位置" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "搜索公司" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "在搜索预览窗口中显示公司" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "搜索生产订单" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "在搜索预览窗口中显示生产订单" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "搜索采购订单" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "在搜索预览窗口中显示采购订单" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "排除未激活的采购订单" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "从搜索预览窗口中排除不活动的采购订单" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "搜索销售订单" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "在搜索预览窗口中显示销售订单" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "排除未激活的销售订单" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "从搜索预览窗口中排除不活动的销售订单" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "搜索退货订单" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "在搜索预览窗口中显示退货订单" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "排除未激活的退货订单" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "从搜索预览窗口中排除不活动的退货订单" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "搜索预览结果" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "在搜索预览窗口的每个部分中显示的结果数" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "正则表达式搜索" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "在搜索查询中启用正则表达式" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "整词搜索" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "搜索查询返回整词匹配的结果" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "在表格中显示数量" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "以某些形式显示可用零件数量" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "Esc键关闭窗体" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "使用ESC键关闭模态窗体" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "固定导航栏" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "导航栏位置固定在屏幕顶部" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "时间格式" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "显示时间的首选格式" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "零件调度" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "显示零件排程信息" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "零件盘点" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "显示零件盘点信息 (如果启用了盘点功能)" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "表字符串长度" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "表视图中显示的字符串的最大长度限制" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "接收错误报告" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "接收系统错误通知" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "上次使用的打印设备" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "为用户保存上次使用的打印设备" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "使用者" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "批发价数量" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "批发价数量" msgid "Price" msgstr "价格" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "指定数量的单位价格" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "端点" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "接收此网络钩子的端点" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "此网络钩子的名称" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "网络钩子是否已启用" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "令牌" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "访问令牌" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "密钥" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "HMAC共享密钥" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "消息ID" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "此邮件的唯一标识符" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "主机" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "接收此消息的主机" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "标题" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "此消息的标题" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "正文" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "此消息的正文" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "接收此消息的终点" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "工作于" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "这条消息的工作完成了吗?" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "标识" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "标题" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "标题" msgid "Link" msgstr "連結" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "已发布" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "作者" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "摘要" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "阅读" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "这条新闻被阅读了吗?" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "这条新闻被阅读了吗?" msgid "Image" msgstr "图像" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "图像文件" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "此图像的目标模型类型" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "此图像的目标型号ID" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "自定义单位" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "单位符号必须唯一" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "单位名称必须是有效的标识符" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "单位名称" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "符号" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "可选单位符号" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "定义" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "单位定义" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "附件" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "缺少檔案" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "缺少外部連結" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "選擇附件" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "註解" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "附件评论" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "上传日期" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "上传文件的日期" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "文件大小" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "文件大小,以字节为单位" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "为附件指定的模型类型无效" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "键" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "将保存到模型数据库中的值" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "已收到退货订单中的物品" msgid "Error raised by plugin" msgstr "插件引发的错误" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "正在运行" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "等待完成的任务" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "预定的任务" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "失败的任务" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "任务ID" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "唯一任务ID" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "锁定" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "锁定时间" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "任务名称" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "功能" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "功能名称" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "参数" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "任务参数" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "关键字参数" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "任务关键词参数" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "檔案名稱" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "模型类型" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "用户无权为此模式创建或编辑附件" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "参数名称" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "参数值" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "供应商零件说明" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "供应商零件说明" msgid "Note" msgstr "备注" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "基本费用" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "最低费用(例如库存费)" @@ -4618,7 +4626,7 @@ msgstr "包装数量" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "单包供应的总数量。为单个项目留空。" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "多个" @@ -5204,7 +5212,7 @@ msgstr "行索引" msgid "Original row data" msgstr "原始行数据" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "数据" @@ -6557,12 +6565,12 @@ msgstr "用于" msgid "Building" msgstr "正在生产" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "最低成本" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "最高成本" @@ -6708,7 +6716,7 @@ msgstr "有修订版本" msgid "BOM Valid" msgstr "物料清单合规" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "库存总量" msgid "Input quantity for price calculation" msgstr "输入用于价格计算的数量" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "零件类别" @@ -6867,7 +6875,7 @@ msgstr "有这个名字,内部零件号,和修订版本的零件已经存在 msgid "Parts cannot be assigned to structural part categories!" msgstr "零件不能分配到结构性零件类别!" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "零件名称" @@ -7006,159 +7014,159 @@ msgstr "此零件的负责人" msgid "Last Stocktake" msgstr "最近库存盘点" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "出售多个" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "用于缓存定价计算的货币" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "最低物料清单成本" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "元件的最低成本" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "物料清单的最高成本" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "元件的最高成本" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "最低购买成本" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "最高历史购买成本" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "最大购买成本" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "最高历史购买成本" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "最低内部价格" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "基于内部批发价的最低成本" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "最大内部价格" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "基于内部批发价的最高成本" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "供应商最低价格" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "外部供应商零件的最低价格" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "供应商最高价格" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "来自外部供应商的商零件的最高价格" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "最小变体成本" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "计算出的变体零件的最低成本" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "最大变体成本" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "计算出的变体零件的最大成本" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "覆盖最低成本" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "覆盖最大成本" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "计算总最低成本" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "计算总最大成本" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "最低售出价格" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "基于批发价的最低售出价格" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "最高售出价格" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "基于批发价的最大售出价格" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "最低销售成本" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "历史最低售出价格" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "最高销售成本" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "历史最高售出价格" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "用于盘点的零件" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "物品数量" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "盘点时的个别库存条目数" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "盘点时可用库存总额" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "盘点时可用库存总额" msgid "Date" msgstr "日期" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "进行盘点的日期" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "附加注释" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "进行此盘点的用户" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "最低库存成本" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "现有存库存最低成本估算" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "最高库存成本" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "目前库存最高成本估算" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "报告" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "盘点报告文件(内部生成)" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "零件计数" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "盘点涵盖的零件数量" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "请求此盘点报告的用户" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "零件售出价格折扣" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "零件测试模板" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "模板名称无效 - 必须包含至少一个字母或者数字" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "选择必须是唯一的" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "零件已存在具有相同主键的测试模板" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "测试名" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "输入测试的名称" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "测试主键" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "简化测试主键" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "测试说明" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "输入测试的描述" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "已启用" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "此测试是否已启用?" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "必须的" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "需要此测试才能通过吗?" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "需要值" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "添加测试结果时是否需要一个值?" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "需要附件" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "添加测试结果时是否需要文件附件?" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "选项" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "此测试的有效选择 (逗号分隔)" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "零件参数模板" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "勾选框参数不能有单位" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "复选框参数不能有选项" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "参数模板名称必须是唯一的" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "参数名称" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "此参数的物理单位" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "参数说明" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "勾选框" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "此参数是否为勾选框?" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "此参数的有效选择 (逗号分隔)" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "零件参数" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "参数不能被修改 - 零件被锁定" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "无效的参数值选择" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "父零件" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "参数模板" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "参数值" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "零件类别参数模板" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "默认值" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "默认参数值" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "零件ID或零件名称" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "唯一零件ID值" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "零件内部零件号" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "级" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "物料清单级别" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "物料清单项目不能被修改 - 装配已锁定" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "物料清单项目不能修改 - 变体装配已锁定" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "选择父零件" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "子零件" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "选择要用于物料清单的零件" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "此物料清单项目的数量" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "此物料清单项目是可选的" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "这个物料清单项目是耗材 (它没有在生产订单中被追踪)" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "超量" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "估计生产物浪费量(绝对值或百分比)" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "物料清单项目引用" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "物料清单项目注释" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "校验和" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "物料清单行校验和" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "已验证" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "此物料清单项目已验证" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "获取继承的" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "此物料清单项目是由物料清单继承的变体零件" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "变体零件的库存项可以用于此物料清单项目" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "可追踪零件的数量必须是整数" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "必须指定子零件" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "物料清单项目替代品" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "替代品零件不能与主零件相同" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "上级物料清单项目" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "替代品零件" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "零件 1" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "零件2" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "选择相关的零件" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "零件关系不能在零件和自身之间创建" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "复制关系已经存在" @@ -8593,7 +8601,7 @@ msgstr "未找到零件图片" msgid "Part Pricing" msgstr "零件价格" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "插件不能被删除,因为它当前处于激活状态" @@ -9001,44 +9009,44 @@ msgstr "为扫描 TME 条形码提供支持" msgid "The Supplier which acts as 'TME'" msgstr "作为‘TME’的供应商" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "只有员工用户可以管理插件" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "插件安装已禁用" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "插件安装成功" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "插件安装到 {path}" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "在插件仓库中找不到插件" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "插件不是一个打包的插件" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "找不到插件包名称" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "插件卸载已禁用" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "插件无法卸载,因为它目前处于激活状态" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "插件卸载成功" @@ -9156,6 +9164,38 @@ msgstr "货币兑换插件示例" msgid "InvenTree Contributors" msgstr "InvenTree 贡献者" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "源URL" @@ -9234,6 +9274,30 @@ msgstr "删除配置" msgid "Delete the plugin configuration from the database" msgstr "从数据库中删除插件配置" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "没有为模板提供有效对象" @@ -9518,7 +9582,7 @@ msgstr "测试结果" msgid "Test" msgstr "测试" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "结果" @@ -9892,7 +9956,7 @@ msgstr "数量不匹配序列号" msgid "Serial numbers already exist" msgstr "序列号已存在" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "测试模板不存在" @@ -9940,67 +10004,67 @@ msgstr "库存状态码必须匹配" msgid "StockItem cannot be moved as it is not in stock" msgstr "库存项不能移动,因为它没有库存" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "库存项跟踪" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "条目注释" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "库存项测试结果" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "必须为此测试提供值" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "测试附件必须上传" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "此测试的值无效" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "测试结果" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "测试输出值" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "测验结果附件" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "测试备注" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "测试站" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "进行测试的测试站的标识符" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "已开始" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "测试开始的时间戳" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "已完成" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "测试结束的时间戳" diff --git a/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po index 107d05eb7f..c52a442966 100644 --- a/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po +++ b/src/backend/InvenTree/locale/zh_Hant/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 05:16+0000\n" -"PO-Revision-Date: 2024-09-06 05:19\n" +"POT-Creation-Date: 2024-09-16 00:37+0000\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -65,9 +65,9 @@ msgstr "" #: order/templates/order/po_sidebar.html:11 #: order/templates/order/return_order_sidebar.html:9 #: order/templates/order/so_sidebar.html:17 part/admin.py:59 -#: part/models.py:3309 part/templates/part/part_sidebar.html:65 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 #: report/templates/report/inventree_build_order_report.html:172 -#: stock/admin.py:231 stock/models.py:2369 stock/models.py:2554 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 #: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 #: stock/serializers.py:1039 stock/serializers.py:1350 #: stock/serializers.py:1439 stock/serializers.py:1604 @@ -364,7 +364,7 @@ msgstr "" msgid "[{site_name}] Log in to the app" msgstr "" -#: InvenTree/magic_login.py:38 InvenTree/serializers.py:413 +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 #: company/models.py:133 company/templates/company/company_base.html:138 #: templates/InvenTree/settings/user.html:49 #: templates/js/translated/company.js:677 @@ -419,9 +419,9 @@ msgstr "" msgid "Invalid choice" msgstr "" -#: InvenTree/models.py:767 common/models.py:2698 common/models.py:3125 -#: common/models.py:3345 common/serializers.py:439 company/models.py:590 -#: machine/models.py:24 part/models.py:995 part/models.py:3776 +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 #: plugin/models.py:51 report/models.py:149 stock/models.py:82 #: templates/InvenTree/settings/mixins/urls.html:13 #: templates/InvenTree/settings/notifications.html:17 @@ -446,7 +446,7 @@ msgstr "" #: company/templates/company/manufacturer_part.html:75 #: company/templates/company/supplier_part.html:107 order/models.py:289 #: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 -#: part/models.py:3791 part/templates/part/category.html:79 +#: part/models.py:3778 part/templates/part/category.html:79 #: part/templates/part/part_base.html:170 #: part/templates/part/part_scheduling.html:12 report/models.py:155 #: report/models.py:517 report/models.py:543 @@ -517,12 +517,12 @@ msgstr "" msgid "An error has been logged by the server." msgstr "" -#: InvenTree/serializers.py:63 part/models.py:4400 +#: InvenTree/serializers.py:63 part/models.py:4387 msgid "Must be a valid number" msgstr "" #: InvenTree/serializers.py:100 company/models.py:183 -#: company/templates/company/company_base.html:112 part/models.py:3127 +#: company/templates/company/company_base.html:112 part/models.py:3114 #: templates/InvenTree/settings/settings_staff_js.html:44 #: templates/currency_data.html:5 msgid "Currency" @@ -536,43 +536,43 @@ msgstr "" msgid "Username" msgstr "" -#: InvenTree/serializers.py:407 templates/InvenTree/settings/user.html:37 +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 msgid "First Name" msgstr "" -#: InvenTree/serializers.py:407 +#: InvenTree/serializers.py:408 msgid "First name of the user" msgstr "" -#: InvenTree/serializers.py:410 templates/InvenTree/settings/user.html:41 +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 msgid "Last Name" msgstr "" -#: InvenTree/serializers.py:410 +#: InvenTree/serializers.py:412 msgid "Last name of the user" msgstr "" -#: InvenTree/serializers.py:413 +#: InvenTree/serializers.py:416 msgid "Email address of the user" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Staff" msgstr "" -#: InvenTree/serializers.py:438 +#: InvenTree/serializers.py:441 msgid "Does this user have staff permissions" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Superuser" msgstr "" -#: InvenTree/serializers.py:441 +#: InvenTree/serializers.py:445 msgid "Is this user a superuser" msgstr "" -#: InvenTree/serializers.py:444 common/models.py:2703 company/models.py:160 +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 #: company/models.py:798 machine/models.py:39 part/admin.py:88 #: part/models.py:1201 plugin/models.py:66 #: templates/js/translated/company.js:523 @@ -585,85 +585,85 @@ msgstr "" msgid "Active" msgstr "" -#: InvenTree/serializers.py:444 +#: InvenTree/serializers.py:449 msgid "Is this user account active" msgstr "" -#: InvenTree/serializers.py:462 +#: InvenTree/serializers.py:467 msgid "You do not have permission to change this user role." msgstr "" -#: InvenTree/serializers.py:474 +#: InvenTree/serializers.py:503 msgid "Only superusers can create new users" msgstr "" -#: InvenTree/serializers.py:493 +#: InvenTree/serializers.py:522 msgid "Your account has been created." msgstr "" -#: InvenTree/serializers.py:495 +#: InvenTree/serializers.py:524 msgid "Please use the password reset function to login" msgstr "" -#: InvenTree/serializers.py:502 +#: InvenTree/serializers.py:531 msgid "Welcome to InvenTree" msgstr "" -#: InvenTree/serializers.py:560 +#: InvenTree/serializers.py:589 msgid "Invalid value" msgstr "" -#: InvenTree/serializers.py:580 importer/models.py:64 +#: InvenTree/serializers.py:609 importer/models.py:64 msgid "Data File" msgstr "" -#: InvenTree/serializers.py:581 +#: InvenTree/serializers.py:610 msgid "Select data file for upload" msgstr "" -#: InvenTree/serializers.py:598 +#: InvenTree/serializers.py:627 msgid "Unsupported file type" msgstr "" -#: InvenTree/serializers.py:604 +#: InvenTree/serializers.py:633 msgid "File is too large" msgstr "" -#: InvenTree/serializers.py:625 +#: InvenTree/serializers.py:654 msgid "No columns found in file" msgstr "" -#: InvenTree/serializers.py:628 +#: InvenTree/serializers.py:657 msgid "No data rows found in file" msgstr "" -#: InvenTree/serializers.py:740 +#: InvenTree/serializers.py:769 msgid "No data rows provided" msgstr "" -#: InvenTree/serializers.py:743 +#: InvenTree/serializers.py:772 msgid "No data columns supplied" msgstr "" -#: InvenTree/serializers.py:809 +#: InvenTree/serializers.py:838 #, python-brace-format msgid "Missing required column: '{name}'" msgstr "" -#: InvenTree/serializers.py:818 +#: InvenTree/serializers.py:847 #, python-brace-format msgid "Duplicate column: '{col}'" msgstr "" -#: InvenTree/serializers.py:857 +#: InvenTree/serializers.py:886 msgid "Remote Image" msgstr "" -#: InvenTree/serializers.py:858 +#: InvenTree/serializers.py:887 msgid "URL of remote image file" msgstr "" -#: InvenTree/serializers.py:876 +#: InvenTree/serializers.py:905 msgid "Downloading images from remote URL is not enabled" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Build must be cancelled before it can be deleted" msgstr "" -#: build/api.py:319 build/serializers.py:1332 part/models.py:4278 +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 #: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 #: templates/js/translated/build.js:2705 #: templates/js/translated/table_filters.js:197 @@ -767,7 +767,7 @@ msgstr "" msgid "Consumable" msgstr "" -#: build/api.py:320 build/serializers.py:1333 part/models.py:4272 +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 #: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 #: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 #: templates/js/translated/table_filters.js:193 @@ -816,7 +816,7 @@ msgstr "" msgid "Available" msgstr "" -#: build/models.py:87 build/templates/build/build_base.html:9 +#: build/models.py:88 build/templates/build/build_base.html:9 #: build/templates/build/build_base.html:27 #: report/templates/report/inventree_build_order_report.html:105 #: stock/serializers.py:85 templates/email/build_order_completed.html:16 @@ -825,7 +825,7 @@ msgstr "" msgid "Build Order" msgstr "" -#: build/models.py:88 build/templates/build/build_base.html:13 +#: build/models.py:89 build/templates/build/build_base.html:13 #: build/templates/build/index.html:8 build/templates/build/index.html:12 #: order/templates/order/sales_order_detail.html:111 #: order/templates/order/so_sidebar.html:13 @@ -866,7 +866,7 @@ msgstr "" #: build/models.py:243 build/serializers.py:1331 order/models.py:468 #: order/models.py:979 order/models.py:1366 order/models.py:2128 -#: part/admin.py:414 part/models.py:4293 part/templates/part/upload_bom.html:54 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 #: report/templates/report/inventree_bill_of_materials_report.html:139 #: report/templates/report/inventree_purchase_order_report.html:28 #: report/templates/report/inventree_return_order_report.html:26 @@ -892,10 +892,10 @@ msgstr "" #: build/templates/build/build_base.html:105 #: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 #: order/models.py:1496 order/models.py:1651 order/models.py:1652 -#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3138 -#: part/models.py:3282 part/models.py:3430 part/models.py:3451 -#: part/models.py:3473 part/models.py:3609 part/models.py:3951 -#: part/models.py:4114 part/models.py:4244 part/models.py:4602 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 #: part/serializers.py:1211 part/serializers.py:1855 #: part/templates/part/part_app_base.html:8 #: part/templates/part/part_pricing.html:12 @@ -1068,7 +1068,7 @@ msgstr "" msgid "External Link" msgstr "" -#: build/models.py:378 common/models.py:3266 part/models.py:1070 +#: build/models.py:378 common/models.py:3273 part/models.py:1070 #: stock/models.py:859 msgid "Link to external URL" msgstr "" @@ -1110,7 +1110,7 @@ msgstr "" msgid "A build order has been completed" msgstr "" -#: build/models.py:968 build/models.py:1056 +#: build/models.py:968 build/models.py:1057 msgid "No build output specified" msgstr "" @@ -1122,37 +1122,37 @@ msgstr "" msgid "Build output does not match Build Order" msgstr "" -#: build/models.py:1060 build/serializers.py:279 build/serializers.py:328 +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 #: build/serializers.py:959 order/models.py:565 order/serializers.py:500 #: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 #: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 msgid "Quantity must be greater than zero" msgstr "" -#: build/models.py:1065 build/serializers.py:284 +#: build/models.py:1066 build/serializers.py:284 msgid "Quantity cannot be greater than the output quantity" msgstr "" -#: build/models.py:1125 build/serializers.py:607 +#: build/models.py:1126 build/serializers.py:607 #, python-brace-format msgid "Build output {serial} has not passed all required tests" msgstr "" -#: build/models.py:1466 +#: build/models.py:1477 msgid "Build Order Line Item" msgstr "" -#: build/models.py:1491 +#: build/models.py:1502 msgid "Build object" msgstr "" -#: build/models.py:1505 build/models.py:1761 build/serializers.py:266 +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 #: build/serializers.py:313 build/serializers.py:1339 #: build/templates/build/build_base.html:110 -#: build/templates/build/detail.html:34 common/models.py:2575 +#: build/templates/build/detail.html:34 common/models.py:2582 #: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 #: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 -#: part/forms.py:48 part/models.py:3296 part/models.py:4266 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 #: part/templates/part/part_pricing.html:16 #: part/templates/part/upload_bom.html:53 #: report/templates/report/inventree_bill_of_materials_report.html:138 @@ -1194,36 +1194,36 @@ msgstr "" msgid "Quantity" msgstr "" -#: build/models.py:1506 +#: build/models.py:1517 msgid "Required quantity for build order" msgstr "" -#: build/models.py:1586 +#: build/models.py:1597 msgid "Build item must specify a build output, as master part is marked as trackable" msgstr "" -#: build/models.py:1595 +#: build/models.py:1606 #, python-brace-format msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" msgstr "" -#: build/models.py:1605 order/models.py:1985 +#: build/models.py:1616 order/models.py:1985 msgid "Stock item is over-allocated" msgstr "" -#: build/models.py:1611 order/models.py:1988 +#: build/models.py:1622 order/models.py:1988 msgid "Allocation quantity must be greater than zero" msgstr "" -#: build/models.py:1617 +#: build/models.py:1628 msgid "Quantity must be 1 for serialized stock" msgstr "" -#: build/models.py:1676 +#: build/models.py:1687 msgid "Selected stock item does not match BOM line" msgstr "" -#: build/models.py:1748 build/serializers.py:939 order/serializers.py:1301 +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 #: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 #: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 #: stock/templates/stock/item_base.html:10 @@ -1241,19 +1241,19 @@ msgstr "" msgid "Stock Item" msgstr "" -#: build/models.py:1749 +#: build/models.py:1763 msgid "Source stock item" msgstr "" -#: build/models.py:1762 +#: build/models.py:1776 msgid "Stock quantity to allocate to build" msgstr "" -#: build/models.py:1770 +#: build/models.py:1784 msgid "Install into" msgstr "" -#: build/models.py:1771 +#: build/models.py:1785 msgid "Destination stock item" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Build Level" msgstr "" #: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 -#: part/admin.py:41 part/admin.py:408 part/models.py:4116 part/stocktake.py:219 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 #: stock/admin.py:157 msgid "Part Name" msgstr "" @@ -1600,12 +1600,12 @@ msgid "Packaging" msgstr "" #: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 -#: part/models.py:4115 part/stocktake.py:218 stock/admin.py:153 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 msgid "Part ID" msgstr "" #: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN" msgstr "" @@ -1667,13 +1667,13 @@ msgstr "" msgid "Inherited" msgstr "" -#: build/serializers.py:1337 part/models.py:4326 +#: build/serializers.py:1337 part/models.py:4313 #: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 #: templates/js/translated/build.js:2714 msgid "Allow Variants" msgstr "" -#: build/serializers.py:1341 part/models.py:4124 part/models.py:4594 +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 #: stock/api.py:793 msgid "BOM Item" msgstr "" @@ -2145,19 +2145,19 @@ msgstr "" msgid "Test Statistics" msgstr "" -#: common/api.py:692 +#: common/api.py:725 msgid "Is Link" msgstr "" -#: common/api.py:700 +#: common/api.py:733 msgid "Is File" msgstr "" -#: common/api.py:743 +#: common/api.py:776 msgid "User does not have permission to delete these attachments" msgstr "" -#: common/api.py:760 +#: common/api.py:793 msgid "User does not have permission to delete this attachment" msgstr "" @@ -2350,7 +2350,7 @@ msgstr "" #: common/models.py:1297 common/models.py:1353 common/models.py:1366 #: common/models.py:1374 common/models.py:1383 common/models.py:1392 #: common/models.py:1629 common/models.py:1651 common/models.py:1752 -#: common/models.py:2134 +#: common/models.py:2141 msgid "days" msgstr "" @@ -2578,7 +2578,7 @@ msgstr "" msgid "Copy category parameter templates when creating a part" msgstr "" -#: common/models.py:1485 part/admin.py:108 part/models.py:3959 +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 #: report/models.py:301 report/models.py:368 report/serializers.py:91 #: report/serializers.py:132 stock/serializers.py:233 #: templates/js/translated/table_filters.js:138 @@ -3247,488 +3247,496 @@ msgid "Enable plugins to respond to internal events" msgstr "" #: common/models.py:2099 -msgid "Enable project codes" +msgid "Enable interface integration" msgstr "" #: common/models.py:2100 -msgid "Enable project codes for tracking projects" +msgid "Enable plugins to integrate into the user interface" msgstr "" -#: common/models.py:2105 -msgid "Stocktake Functionality" +#: common/models.py:2106 +msgid "Enable project codes" msgstr "" #: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 msgid "Enable stocktake functionality for recording stock levels and calculating stock value" msgstr "" -#: common/models.py:2113 +#: common/models.py:2120 msgid "Exclude External Locations" msgstr "" -#: common/models.py:2115 +#: common/models.py:2122 msgid "Exclude stock items in external locations from stocktake calculations" msgstr "" -#: common/models.py:2121 +#: common/models.py:2128 msgid "Automatic Stocktake Period" msgstr "" -#: common/models.py:2123 +#: common/models.py:2130 msgid "Number of days between automatic stocktake recording (set to zero to disable)" msgstr "" -#: common/models.py:2129 +#: common/models.py:2136 msgid "Report Deletion Interval" msgstr "" -#: common/models.py:2131 +#: common/models.py:2138 msgid "Stocktake reports will be deleted after specified number of days" msgstr "" -#: common/models.py:2138 +#: common/models.py:2145 msgid "Display Users full names" msgstr "" -#: common/models.py:2139 +#: common/models.py:2146 msgid "Display Users full names instead of usernames" msgstr "" -#: common/models.py:2144 +#: common/models.py:2151 msgid "Enable Test Station Data" msgstr "" -#: common/models.py:2145 +#: common/models.py:2152 msgid "Enable test station data collection for test results" msgstr "" -#: common/models.py:2150 +#: common/models.py:2157 msgid "Create Template on Upload" msgstr "" -#: common/models.py:2152 +#: common/models.py:2159 msgid "Create a new test template when uploading test data which does not match an existing template" msgstr "" -#: common/models.py:2165 common/models.py:2545 +#: common/models.py:2172 common/models.py:2552 msgid "Settings key (must be unique - case insensitive" msgstr "" -#: common/models.py:2208 +#: common/models.py:2215 msgid "Hide inactive parts" msgstr "" -#: common/models.py:2210 +#: common/models.py:2217 msgid "Hide inactive parts in results displayed on the homepage" msgstr "" -#: common/models.py:2216 +#: common/models.py:2223 msgid "Show subscribed parts" msgstr "" -#: common/models.py:2217 +#: common/models.py:2224 msgid "Show subscribed parts on the homepage" msgstr "" -#: common/models.py:2222 +#: common/models.py:2229 msgid "Show subscribed categories" msgstr "" -#: common/models.py:2223 +#: common/models.py:2230 msgid "Show subscribed part categories on the homepage" msgstr "" -#: common/models.py:2228 +#: common/models.py:2235 msgid "Show latest parts" msgstr "" -#: common/models.py:2229 +#: common/models.py:2236 msgid "Show latest parts on the homepage" msgstr "" -#: common/models.py:2234 +#: common/models.py:2241 msgid "Show invalid BOMs" msgstr "" -#: common/models.py:2235 +#: common/models.py:2242 msgid "Show BOMs that await validation on the homepage" msgstr "" -#: common/models.py:2240 +#: common/models.py:2247 msgid "Show recent stock changes" msgstr "" -#: common/models.py:2241 +#: common/models.py:2248 msgid "Show recently changed stock items on the homepage" msgstr "" -#: common/models.py:2246 +#: common/models.py:2253 msgid "Show low stock" msgstr "" -#: common/models.py:2247 +#: common/models.py:2254 msgid "Show low stock items on the homepage" msgstr "" -#: common/models.py:2252 +#: common/models.py:2259 msgid "Show depleted stock" msgstr "" -#: common/models.py:2253 +#: common/models.py:2260 msgid "Show depleted stock items on the homepage" msgstr "" -#: common/models.py:2258 +#: common/models.py:2265 msgid "Show needed stock" msgstr "" -#: common/models.py:2259 +#: common/models.py:2266 msgid "Show stock items needed for builds on the homepage" msgstr "" -#: common/models.py:2264 +#: common/models.py:2271 msgid "Show expired stock" msgstr "" -#: common/models.py:2265 +#: common/models.py:2272 msgid "Show expired stock items on the homepage" msgstr "" -#: common/models.py:2270 +#: common/models.py:2277 msgid "Show stale stock" msgstr "" -#: common/models.py:2271 +#: common/models.py:2278 msgid "Show stale stock items on the homepage" msgstr "" -#: common/models.py:2276 +#: common/models.py:2283 msgid "Show pending builds" msgstr "" -#: common/models.py:2277 +#: common/models.py:2284 msgid "Show pending builds on the homepage" msgstr "" -#: common/models.py:2282 +#: common/models.py:2289 msgid "Show overdue builds" msgstr "" -#: common/models.py:2283 +#: common/models.py:2290 msgid "Show overdue builds on the homepage" msgstr "" -#: common/models.py:2288 +#: common/models.py:2295 msgid "Show outstanding POs" msgstr "" -#: common/models.py:2289 +#: common/models.py:2296 msgid "Show outstanding POs on the homepage" msgstr "" -#: common/models.py:2294 +#: common/models.py:2301 msgid "Show overdue POs" msgstr "" -#: common/models.py:2295 +#: common/models.py:2302 msgid "Show overdue POs on the homepage" msgstr "" -#: common/models.py:2300 +#: common/models.py:2307 msgid "Show outstanding SOs" msgstr "" -#: common/models.py:2301 +#: common/models.py:2308 msgid "Show outstanding SOs on the homepage" msgstr "" -#: common/models.py:2306 +#: common/models.py:2313 msgid "Show overdue SOs" msgstr "" -#: common/models.py:2307 +#: common/models.py:2314 msgid "Show overdue SOs on the homepage" msgstr "" -#: common/models.py:2312 +#: common/models.py:2319 msgid "Show pending SO shipments" msgstr "" -#: common/models.py:2313 +#: common/models.py:2320 msgid "Show pending SO shipments on the homepage" msgstr "" -#: common/models.py:2318 +#: common/models.py:2325 msgid "Show News" msgstr "" -#: common/models.py:2319 +#: common/models.py:2326 msgid "Show news on the homepage" msgstr "" -#: common/models.py:2324 +#: common/models.py:2331 msgid "Inline label display" msgstr "" -#: common/models.py:2326 +#: common/models.py:2333 msgid "Display PDF labels in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2332 +#: common/models.py:2339 msgid "Default label printer" msgstr "" -#: common/models.py:2334 +#: common/models.py:2341 msgid "Configure which label printer should be selected by default" msgstr "" -#: common/models.py:2340 +#: common/models.py:2347 msgid "Inline report display" msgstr "" -#: common/models.py:2342 +#: common/models.py:2349 msgid "Display PDF reports in the browser, instead of downloading as a file" msgstr "" -#: common/models.py:2348 +#: common/models.py:2355 msgid "Search Parts" msgstr "" -#: common/models.py:2349 +#: common/models.py:2356 msgid "Display parts in search preview window" msgstr "" -#: common/models.py:2354 +#: common/models.py:2361 msgid "Search Supplier Parts" msgstr "" -#: common/models.py:2355 +#: common/models.py:2362 msgid "Display supplier parts in search preview window" msgstr "" -#: common/models.py:2360 +#: common/models.py:2367 msgid "Search Manufacturer Parts" msgstr "" -#: common/models.py:2361 +#: common/models.py:2368 msgid "Display manufacturer parts in search preview window" msgstr "" -#: common/models.py:2366 +#: common/models.py:2373 msgid "Hide Inactive Parts" msgstr "" -#: common/models.py:2367 +#: common/models.py:2374 msgid "Excluded inactive parts from search preview window" msgstr "" -#: common/models.py:2372 +#: common/models.py:2379 msgid "Search Categories" msgstr "" -#: common/models.py:2373 +#: common/models.py:2380 msgid "Display part categories in search preview window" msgstr "" -#: common/models.py:2378 +#: common/models.py:2385 msgid "Search Stock" msgstr "" -#: common/models.py:2379 +#: common/models.py:2386 msgid "Display stock items in search preview window" msgstr "" -#: common/models.py:2384 +#: common/models.py:2391 msgid "Hide Unavailable Stock Items" msgstr "" -#: common/models.py:2386 +#: common/models.py:2393 msgid "Exclude stock items which are not available from the search preview window" msgstr "" -#: common/models.py:2392 +#: common/models.py:2399 msgid "Search Locations" msgstr "" -#: common/models.py:2393 +#: common/models.py:2400 msgid "Display stock locations in search preview window" msgstr "" -#: common/models.py:2398 +#: common/models.py:2405 msgid "Search Companies" msgstr "" -#: common/models.py:2399 +#: common/models.py:2406 msgid "Display companies in search preview window" msgstr "" -#: common/models.py:2404 +#: common/models.py:2411 msgid "Search Build Orders" msgstr "" -#: common/models.py:2405 +#: common/models.py:2412 msgid "Display build orders in search preview window" msgstr "" -#: common/models.py:2410 +#: common/models.py:2417 msgid "Search Purchase Orders" msgstr "" -#: common/models.py:2411 +#: common/models.py:2418 msgid "Display purchase orders in search preview window" msgstr "" -#: common/models.py:2416 +#: common/models.py:2423 msgid "Exclude Inactive Purchase Orders" msgstr "" -#: common/models.py:2418 +#: common/models.py:2425 msgid "Exclude inactive purchase orders from search preview window" msgstr "" -#: common/models.py:2424 +#: common/models.py:2431 msgid "Search Sales Orders" msgstr "" -#: common/models.py:2425 +#: common/models.py:2432 msgid "Display sales orders in search preview window" msgstr "" -#: common/models.py:2430 +#: common/models.py:2437 msgid "Exclude Inactive Sales Orders" msgstr "" -#: common/models.py:2432 +#: common/models.py:2439 msgid "Exclude inactive sales orders from search preview window" msgstr "" -#: common/models.py:2438 +#: common/models.py:2445 msgid "Search Return Orders" msgstr "" -#: common/models.py:2439 +#: common/models.py:2446 msgid "Display return orders in search preview window" msgstr "" -#: common/models.py:2444 +#: common/models.py:2451 msgid "Exclude Inactive Return Orders" msgstr "" -#: common/models.py:2446 +#: common/models.py:2453 msgid "Exclude inactive return orders from search preview window" msgstr "" -#: common/models.py:2452 +#: common/models.py:2459 msgid "Search Preview Results" msgstr "" -#: common/models.py:2454 +#: common/models.py:2461 msgid "Number of results to show in each section of the search preview window" msgstr "" -#: common/models.py:2460 +#: common/models.py:2467 msgid "Regex Search" msgstr "" -#: common/models.py:2461 +#: common/models.py:2468 msgid "Enable regular expressions in search queries" msgstr "" -#: common/models.py:2466 +#: common/models.py:2473 msgid "Whole Word Search" msgstr "" -#: common/models.py:2467 +#: common/models.py:2474 msgid "Search queries return results for whole word matches" msgstr "" -#: common/models.py:2472 +#: common/models.py:2479 msgid "Show Quantity in Forms" msgstr "" -#: common/models.py:2473 +#: common/models.py:2480 msgid "Display available part quantity in some forms" msgstr "" -#: common/models.py:2478 +#: common/models.py:2485 msgid "Escape Key Closes Forms" msgstr "" -#: common/models.py:2479 +#: common/models.py:2486 msgid "Use the escape key to close modal forms" msgstr "" -#: common/models.py:2484 +#: common/models.py:2491 msgid "Fixed Navbar" msgstr "" -#: common/models.py:2485 +#: common/models.py:2492 msgid "The navbar position is fixed to the top of the screen" msgstr "" -#: common/models.py:2490 +#: common/models.py:2497 msgid "Date Format" msgstr "" -#: common/models.py:2491 +#: common/models.py:2498 msgid "Preferred format for displaying dates" msgstr "" -#: common/models.py:2504 part/templates/part/detail.html:41 +#: common/models.py:2511 part/templates/part/detail.html:41 msgid "Part Scheduling" msgstr "" -#: common/models.py:2505 +#: common/models.py:2512 msgid "Display part scheduling information" msgstr "" -#: common/models.py:2510 part/templates/part/detail.html:62 +#: common/models.py:2517 part/templates/part/detail.html:62 msgid "Part Stocktake" msgstr "" -#: common/models.py:2512 +#: common/models.py:2519 msgid "Display part stocktake information (if stocktake functionality is enabled)" msgstr "" -#: common/models.py:2518 +#: common/models.py:2525 msgid "Table String Length" msgstr "" -#: common/models.py:2520 +#: common/models.py:2527 msgid "Maximum length limit for strings displayed in table views" msgstr "" -#: common/models.py:2526 +#: common/models.py:2533 msgid "Receive error reports" msgstr "" -#: common/models.py:2527 +#: common/models.py:2534 msgid "Receive notifications for system errors" msgstr "" -#: common/models.py:2532 +#: common/models.py:2539 msgid "Last used printing machines" msgstr "" -#: common/models.py:2533 +#: common/models.py:2540 msgid "Save the last used printing machines for a user" msgstr "" -#: common/models.py:2553 common/models.py:2554 common/models.py:2711 -#: common/models.py:2712 common/models.py:2957 common/models.py:2958 -#: common/models.py:3281 common/models.py:3282 importer/models.py:89 -#: part/models.py:3319 part/models.py:3406 part/models.py:3480 -#: part/models.py:3508 plugin/models.py:274 plugin/models.py:275 +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 #: report/templates/report/inventree_test_report.html:105 #: templates/js/translated/stock.js:3121 users/models.py:111 msgid "User" msgstr "" -#: common/models.py:2576 +#: common/models.py:2583 msgid "Price break quantity" msgstr "" -#: common/models.py:2583 company/serializers.py:517 order/admin.py:42 +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 #: order/models.py:1423 order/models.py:2410 #: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 #: templates/js/translated/pricing.js:621 @@ -3736,96 +3744,96 @@ msgstr "" msgid "Price" msgstr "" -#: common/models.py:2584 +#: common/models.py:2591 msgid "Unit price at specified quantity" msgstr "" -#: common/models.py:2688 common/models.py:2873 +#: common/models.py:2695 common/models.py:2880 msgid "Endpoint" msgstr "" -#: common/models.py:2689 +#: common/models.py:2696 msgid "Endpoint at which this webhook is received" msgstr "" -#: common/models.py:2699 +#: common/models.py:2706 msgid "Name for this webhook" msgstr "" -#: common/models.py:2703 +#: common/models.py:2710 msgid "Is this webhook active" msgstr "" -#: common/models.py:2719 users/models.py:159 +#: common/models.py:2726 users/models.py:159 msgid "Token" msgstr "" -#: common/models.py:2720 +#: common/models.py:2727 msgid "Token for access" msgstr "" -#: common/models.py:2728 +#: common/models.py:2735 msgid "Secret" msgstr "" -#: common/models.py:2729 +#: common/models.py:2736 msgid "Shared secret for HMAC" msgstr "" -#: common/models.py:2837 +#: common/models.py:2844 msgid "Message ID" msgstr "" -#: common/models.py:2838 +#: common/models.py:2845 msgid "Unique identifier for this message" msgstr "" -#: common/models.py:2846 +#: common/models.py:2853 msgid "Host" msgstr "" -#: common/models.py:2847 +#: common/models.py:2854 msgid "Host from which this message was received" msgstr "" -#: common/models.py:2855 +#: common/models.py:2862 msgid "Header" msgstr "" -#: common/models.py:2856 +#: common/models.py:2863 msgid "Header of this message" msgstr "" -#: common/models.py:2863 +#: common/models.py:2870 msgid "Body" msgstr "" -#: common/models.py:2864 +#: common/models.py:2871 msgid "Body of this message" msgstr "" -#: common/models.py:2874 +#: common/models.py:2881 msgid "Endpoint on which this message was received" msgstr "" -#: common/models.py:2879 +#: common/models.py:2886 msgid "Worked on" msgstr "" -#: common/models.py:2880 +#: common/models.py:2887 msgid "Was the work on this message finished?" msgstr "" -#: common/models.py:3006 +#: common/models.py:3013 msgid "Id" msgstr "" -#: common/models.py:3008 templates/js/translated/company.js:965 +#: common/models.py:3015 templates/js/translated/company.js:965 #: templates/js/translated/news.js:44 msgid "Title" msgstr "" -#: common/models.py:3010 common/models.py:3265 company/models.py:146 +#: common/models.py:3017 common/models.py:3272 company/models.py:146 #: company/models.py:443 company/models.py:509 company/models.py:815 #: order/models.py:303 order/models.py:1378 order/models.py:1810 #: part/admin.py:55 part/models.py:1069 @@ -3842,28 +3850,28 @@ msgstr "" msgid "Link" msgstr "" -#: common/models.py:3012 templates/js/translated/news.js:60 +#: common/models.py:3019 templates/js/translated/news.js:60 msgid "Published" msgstr "" -#: common/models.py:3014 templates/InvenTree/settings/plugin_settings.html:32 +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 #: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 msgid "Author" msgstr "" -#: common/models.py:3016 templates/js/translated/news.js:52 +#: common/models.py:3023 templates/js/translated/news.js:52 msgid "Summary" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Read" msgstr "" -#: common/models.py:3019 +#: common/models.py:3026 msgid "Was this news item read?" msgstr "" -#: common/models.py:3036 company/models.py:156 part/models.py:1079 +#: common/models.py:3043 company/models.py:156 part/models.py:1079 #: report/templates/report/inventree_bill_of_materials_report.html:126 #: report/templates/report/inventree_bill_of_materials_report.html:148 #: report/templates/report/inventree_return_order_report.html:35 @@ -3873,186 +3881,186 @@ msgstr "" msgid "Image" msgstr "" -#: common/models.py:3036 +#: common/models.py:3043 msgid "Image file" msgstr "" -#: common/models.py:3048 common/models.py:3249 +#: common/models.py:3055 common/models.py:3256 msgid "Target model type for this image" msgstr "" -#: common/models.py:3052 +#: common/models.py:3059 msgid "Target model ID for this image" msgstr "" -#: common/models.py:3074 +#: common/models.py:3081 msgid "Custom Unit" msgstr "" -#: common/models.py:3092 +#: common/models.py:3099 msgid "Unit symbol must be unique" msgstr "" -#: common/models.py:3107 +#: common/models.py:3114 msgid "Unit name must be a valid identifier" msgstr "" -#: common/models.py:3126 +#: common/models.py:3133 msgid "Unit name" msgstr "" -#: common/models.py:3133 templates/InvenTree/settings/settings_staff_js.html:75 +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 msgid "Symbol" msgstr "" -#: common/models.py:3134 +#: common/models.py:3141 msgid "Optional unit symbol" msgstr "" -#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:71 +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 msgid "Definition" msgstr "" -#: common/models.py:3141 +#: common/models.py:3148 msgid "Unit definition" msgstr "" -#: common/models.py:3199 common/models.py:3256 stock/models.py:2549 +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 #: stock/serializers.py:244 templates/js/translated/attachment.js:119 #: templates/js/translated/attachment.js:345 msgid "Attachment" msgstr "" -#: common/models.py:3211 +#: common/models.py:3218 msgid "Missing file" msgstr "" -#: common/models.py:3212 +#: common/models.py:3219 msgid "Missing external link" msgstr "" -#: common/models.py:3257 +#: common/models.py:3264 msgid "Select file to attach" msgstr "" -#: common/models.py:3272 templates/js/translated/attachment.js:120 +#: common/models.py:3279 templates/js/translated/attachment.js:120 #: templates/js/translated/attachment.js:360 msgid "Comment" msgstr "" -#: common/models.py:3273 +#: common/models.py:3280 msgid "Attachment comment" msgstr "" -#: common/models.py:3289 +#: common/models.py:3296 msgid "Upload date" msgstr "" -#: common/models.py:3290 +#: common/models.py:3297 msgid "Date the file was uploaded" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size" msgstr "" -#: common/models.py:3294 +#: common/models.py:3301 msgid "File size in bytes" msgstr "" -#: common/models.py:3332 common/serializers.py:588 +#: common/models.py:3339 common/serializers.py:604 msgid "Invalid model type specified for attachment" msgstr "" -#: common/models.py:3341 plugin/models.py:43 users/models.py:100 +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 msgid "Key" msgstr "" -#: common/models.py:3342 +#: common/models.py:3349 msgid "Value that will be saved in the models database" msgstr "" -#: common/models.py:3345 +#: common/models.py:3352 msgid "Name of the state" msgstr "" -#: common/models.py:3349 +#: common/models.py:3356 msgid "Label" msgstr "" -#: common/models.py:3350 +#: common/models.py:3357 msgid "Label that will be displayed in the frontend" msgstr "" -#: common/models.py:3356 +#: common/models.py:3363 msgid "Color" msgstr "" -#: common/models.py:3357 +#: common/models.py:3364 msgid "Color that will be displayed in the frontend" msgstr "" -#: common/models.py:3360 +#: common/models.py:3367 msgid "Logical Key" msgstr "" -#: common/models.py:3362 +#: common/models.py:3369 msgid "State logical key that is equal to this custom state in business logic" msgstr "" -#: common/models.py:3370 +#: common/models.py:3377 msgid "Model" msgstr "" -#: common/models.py:3371 +#: common/models.py:3378 msgid "Model this state is associated with" msgstr "" -#: common/models.py:3375 +#: common/models.py:3382 msgid "Reference Status Set" msgstr "" -#: common/models.py:3376 +#: common/models.py:3383 msgid "Status set that is extended with this custom state" msgstr "" -#: common/models.py:3382 +#: common/models.py:3389 msgid "Custom State" msgstr "" -#: common/models.py:3383 +#: common/models.py:3390 msgid "Custom States" msgstr "" -#: common/models.py:3398 +#: common/models.py:3405 msgid "Model must be selected" msgstr "" -#: common/models.py:3401 +#: common/models.py:3408 msgid "Key must be selected" msgstr "" -#: common/models.py:3404 +#: common/models.py:3411 msgid "Logical key must be selected" msgstr "" -#: common/models.py:3408 +#: common/models.py:3415 msgid "Key must be different from logical key" msgstr "" -#: common/models.py:3412 +#: common/models.py:3419 msgid "Reference status must be selected" msgstr "" -#: common/models.py:3424 +#: common/models.py:3431 msgid "Reference status set not found" msgstr "" -#: common/models.py:3430 +#: common/models.py:3437 msgid "Key must be different from the logical keys of the reference status" msgstr "" -#: common/models.py:3436 +#: common/models.py:3443 msgid "Logical key must be in the logical keys of the reference status" msgstr "" @@ -4090,75 +4098,75 @@ msgstr "" msgid "Error raised by plugin" msgstr "" -#: common/serializers.py:402 +#: common/serializers.py:418 msgid "Is Running" msgstr "" -#: common/serializers.py:408 +#: common/serializers.py:424 msgid "Pending Tasks" msgstr "" -#: common/serializers.py:414 +#: common/serializers.py:430 msgid "Scheduled Tasks" msgstr "" -#: common/serializers.py:420 +#: common/serializers.py:436 msgid "Failed Tasks" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Task ID" msgstr "" -#: common/serializers.py:435 +#: common/serializers.py:451 msgid "Unique task ID" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock" msgstr "" -#: common/serializers.py:437 +#: common/serializers.py:453 msgid "Lock time" msgstr "" -#: common/serializers.py:439 +#: common/serializers.py:455 msgid "Task name" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function" msgstr "" -#: common/serializers.py:441 +#: common/serializers.py:457 msgid "Function name" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Arguments" msgstr "" -#: common/serializers.py:443 +#: common/serializers.py:459 msgid "Task arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Keyword Arguments" msgstr "" -#: common/serializers.py:446 +#: common/serializers.py:462 msgid "Task keyword arguments" msgstr "" -#: common/serializers.py:556 +#: common/serializers.py:572 msgid "Filename" msgstr "" -#: common/serializers.py:563 report/api.py:100 report/serializers.py:54 +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 msgid "Model Type" msgstr "" -#: common/serializers.py:591 +#: common/serializers.py:607 msgid "User does not have permission to create or edit attachments for this model" msgstr "" @@ -4494,7 +4502,7 @@ msgid "Parameter name" msgstr "" #: company/models.py:597 report/templates/report/inventree_test_report.html:104 -#: stock/models.py:2541 templates/js/translated/company.js:1166 +#: stock/models.py:2539 templates/js/translated/company.js:1166 #: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 #: templates/js/translated/stock.js:1607 msgid "Value" @@ -4505,7 +4513,7 @@ msgid "Parameter value" msgstr "" #: company/models.py:605 company/templates/company/supplier_part.html:168 -#: part/admin.py:57 part/models.py:1159 part/models.py:3783 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 #: part/templates/part/part_base.html:300 #: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 #: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 @@ -4580,7 +4588,7 @@ msgid "Supplier part description" msgstr "" #: company/models.py:832 company/templates/company/supplier_part.html:187 -#: order/serializers.py:699 part/admin.py:415 part/models.py:4301 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 #: part/templates/part/upload_bom.html:59 #: report/templates/report/inventree_bill_of_materials_report.html:140 #: report/templates/report/inventree_purchase_order_report.html:32 @@ -4592,11 +4600,11 @@ msgstr "" msgid "Note" msgstr "" -#: company/models.py:841 part/models.py:2129 +#: company/models.py:841 part/models.py:2128 msgid "base cost" msgstr "" -#: company/models.py:842 part/models.py:2130 +#: company/models.py:842 part/models.py:2129 msgid "Minimum charge (e.g. stocking fee)" msgstr "" @@ -4618,7 +4626,7 @@ msgstr "" msgid "Total quantity supplied in a single pack. Leave empty for single items." msgstr "" -#: company/models.py:876 part/models.py:2136 +#: company/models.py:876 part/models.py:2135 msgid "multiple" msgstr "" @@ -5204,7 +5212,7 @@ msgstr "" msgid "Original row data" msgstr "" -#: importer/models.py:504 part/models.py:3965 +#: importer/models.py:504 part/models.py:3952 msgid "Data" msgstr "" @@ -6557,12 +6565,12 @@ msgstr "" msgid "Building" msgstr "" -#: part/admin.py:155 part/models.py:3214 part/models.py:3228 +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 #: templates/js/translated/part.js:976 msgid "Minimum Cost" msgstr "" -#: part/admin.py:158 part/models.py:3221 part/models.py:3235 +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 #: templates/js/translated/part.js:986 msgid "Maximum Cost" msgstr "" @@ -6708,7 +6716,7 @@ msgstr "" msgid "BOM Valid" msgstr "" -#: part/api.py:1520 part/models.py:1036 part/models.py:3501 part/models.py:4060 +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 #: part/serializers.py:441 part/serializers.py:1221 #: part/templates/part/part_base.html:267 stock/api.py:780 #: templates/InvenTree/settings/settings_staff_js.html:300 @@ -6744,7 +6752,7 @@ msgstr "" msgid "Input quantity for price calculation" msgstr "" -#: part/models.py:89 part/models.py:4061 part/templates/part/category.html:16 +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 #: part/templates/part/part_app_base.html:10 msgid "Part Category" msgstr "" @@ -6867,7 +6875,7 @@ msgstr "" msgid "Parts cannot be assigned to structural part categories!" msgstr "" -#: part/models.py:995 part/models.py:4116 +#: part/models.py:995 part/models.py:4103 msgid "Part name" msgstr "" @@ -7006,159 +7014,159 @@ msgstr "" msgid "Last Stocktake" msgstr "" -#: part/models.py:2137 +#: part/models.py:2136 msgid "Sell multiple" msgstr "" -#: part/models.py:3128 +#: part/models.py:3115 msgid "Currency used to cache pricing calculations" msgstr "" -#: part/models.py:3144 +#: part/models.py:3131 msgid "Minimum BOM Cost" msgstr "" -#: part/models.py:3145 +#: part/models.py:3132 msgid "Minimum cost of component parts" msgstr "" -#: part/models.py:3151 +#: part/models.py:3138 msgid "Maximum BOM Cost" msgstr "" -#: part/models.py:3152 +#: part/models.py:3139 msgid "Maximum cost of component parts" msgstr "" -#: part/models.py:3158 +#: part/models.py:3145 msgid "Minimum Purchase Cost" msgstr "" -#: part/models.py:3159 +#: part/models.py:3146 msgid "Minimum historical purchase cost" msgstr "" -#: part/models.py:3165 +#: part/models.py:3152 msgid "Maximum Purchase Cost" msgstr "" -#: part/models.py:3166 +#: part/models.py:3153 msgid "Maximum historical purchase cost" msgstr "" -#: part/models.py:3172 +#: part/models.py:3159 msgid "Minimum Internal Price" msgstr "" -#: part/models.py:3173 +#: part/models.py:3160 msgid "Minimum cost based on internal price breaks" msgstr "" -#: part/models.py:3179 +#: part/models.py:3166 msgid "Maximum Internal Price" msgstr "" -#: part/models.py:3180 +#: part/models.py:3167 msgid "Maximum cost based on internal price breaks" msgstr "" -#: part/models.py:3186 +#: part/models.py:3173 msgid "Minimum Supplier Price" msgstr "" -#: part/models.py:3187 +#: part/models.py:3174 msgid "Minimum price of part from external suppliers" msgstr "" -#: part/models.py:3193 +#: part/models.py:3180 msgid "Maximum Supplier Price" msgstr "" -#: part/models.py:3194 +#: part/models.py:3181 msgid "Maximum price of part from external suppliers" msgstr "" -#: part/models.py:3200 +#: part/models.py:3187 msgid "Minimum Variant Cost" msgstr "" -#: part/models.py:3201 +#: part/models.py:3188 msgid "Calculated minimum cost of variant parts" msgstr "" -#: part/models.py:3207 +#: part/models.py:3194 msgid "Maximum Variant Cost" msgstr "" -#: part/models.py:3208 +#: part/models.py:3195 msgid "Calculated maximum cost of variant parts" msgstr "" -#: part/models.py:3215 +#: part/models.py:3202 msgid "Override minimum cost" msgstr "" -#: part/models.py:3222 +#: part/models.py:3209 msgid "Override maximum cost" msgstr "" -#: part/models.py:3229 +#: part/models.py:3216 msgid "Calculated overall minimum cost" msgstr "" -#: part/models.py:3236 +#: part/models.py:3223 msgid "Calculated overall maximum cost" msgstr "" -#: part/models.py:3242 +#: part/models.py:3229 msgid "Minimum Sale Price" msgstr "" -#: part/models.py:3243 +#: part/models.py:3230 msgid "Minimum sale price based on price breaks" msgstr "" -#: part/models.py:3249 +#: part/models.py:3236 msgid "Maximum Sale Price" msgstr "" -#: part/models.py:3250 +#: part/models.py:3237 msgid "Maximum sale price based on price breaks" msgstr "" -#: part/models.py:3256 +#: part/models.py:3243 msgid "Minimum Sale Cost" msgstr "" -#: part/models.py:3257 +#: part/models.py:3244 msgid "Minimum historical sale price" msgstr "" -#: part/models.py:3263 +#: part/models.py:3250 msgid "Maximum Sale Cost" msgstr "" -#: part/models.py:3264 +#: part/models.py:3251 msgid "Maximum historical sale price" msgstr "" -#: part/models.py:3283 +#: part/models.py:3270 msgid "Part for stocktake" msgstr "" -#: part/models.py:3288 +#: part/models.py:3275 msgid "Item Count" msgstr "" -#: part/models.py:3289 +#: part/models.py:3276 msgid "Number of individual stock entries at time of stocktake" msgstr "" -#: part/models.py:3297 +#: part/models.py:3284 msgid "Total available stock at time of stocktake" msgstr "" -#: part/models.py:3301 part/models.py:3384 +#: part/models.py:3288 part/models.py:3371 #: part/templates/part/part_scheduling.html:13 #: report/templates/report/inventree_test_report.html:106 #: templates/InvenTree/settings/plugin_settings.html:37 @@ -7170,363 +7178,363 @@ msgstr "" msgid "Date" msgstr "" -#: part/models.py:3302 +#: part/models.py:3289 msgid "Date stocktake was performed" msgstr "" -#: part/models.py:3310 +#: part/models.py:3297 msgid "Additional notes" msgstr "" -#: part/models.py:3320 +#: part/models.py:3307 msgid "User who performed this stocktake" msgstr "" -#: part/models.py:3326 +#: part/models.py:3313 msgid "Minimum Stock Cost" msgstr "" -#: part/models.py:3327 +#: part/models.py:3314 msgid "Estimated minimum cost of stock on hand" msgstr "" -#: part/models.py:3333 +#: part/models.py:3320 msgid "Maximum Stock Cost" msgstr "" -#: part/models.py:3334 +#: part/models.py:3321 msgid "Estimated maximum cost of stock on hand" msgstr "" -#: part/models.py:3390 templates/InvenTree/settings/settings_staff_js.html:532 +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 msgid "Report" msgstr "" -#: part/models.py:3391 +#: part/models.py:3378 msgid "Stocktake report file (generated internally)" msgstr "" -#: part/models.py:3396 templates/InvenTree/settings/settings_staff_js.html:539 +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 msgid "Part Count" msgstr "" -#: part/models.py:3397 +#: part/models.py:3384 msgid "Number of parts covered by stocktake" msgstr "" -#: part/models.py:3407 +#: part/models.py:3394 msgid "User who requested this stocktake report" msgstr "" -#: part/models.py:3417 +#: part/models.py:3404 msgid "Part Sale Price Break" msgstr "" -#: part/models.py:3529 +#: part/models.py:3516 msgid "Part Test Template" msgstr "" -#: part/models.py:3555 +#: part/models.py:3542 msgid "Invalid template name - must include at least one alphanumeric character" msgstr "" -#: part/models.py:3576 part/models.py:3745 +#: part/models.py:3563 part/models.py:3732 msgid "Choices must be unique" msgstr "" -#: part/models.py:3587 +#: part/models.py:3574 msgid "Test templates can only be created for testable parts" msgstr "" -#: part/models.py:3598 +#: part/models.py:3585 msgid "Test template with the same key already exists for part" msgstr "" -#: part/models.py:3615 templates/js/translated/part.js:2898 +#: part/models.py:3602 templates/js/translated/part.js:2898 msgid "Test Name" msgstr "" -#: part/models.py:3616 +#: part/models.py:3603 msgid "Enter a name for the test" msgstr "" -#: part/models.py:3622 +#: part/models.py:3609 msgid "Test Key" msgstr "" -#: part/models.py:3623 +#: part/models.py:3610 msgid "Simplified key for the test" msgstr "" -#: part/models.py:3630 +#: part/models.py:3617 msgid "Test Description" msgstr "" -#: part/models.py:3631 +#: part/models.py:3618 msgid "Enter description for this test" msgstr "" -#: part/models.py:3635 report/models.py:216 +#: part/models.py:3622 report/models.py:216 #: templates/js/translated/part.js:2919 #: templates/js/translated/table_filters.js:502 msgid "Enabled" msgstr "" -#: part/models.py:3635 +#: part/models.py:3622 msgid "Is this test enabled?" msgstr "" -#: part/models.py:3640 templates/js/translated/part.js:2927 +#: part/models.py:3627 templates/js/translated/part.js:2927 #: templates/js/translated/table_filters.js:498 msgid "Required" msgstr "" -#: part/models.py:3641 +#: part/models.py:3628 msgid "Is this test required to pass?" msgstr "" -#: part/models.py:3646 templates/js/translated/part.js:2935 +#: part/models.py:3633 templates/js/translated/part.js:2935 msgid "Requires Value" msgstr "" -#: part/models.py:3647 +#: part/models.py:3634 msgid "Does this test require a value when adding a test result?" msgstr "" -#: part/models.py:3652 templates/js/translated/part.js:2942 +#: part/models.py:3639 templates/js/translated/part.js:2942 msgid "Requires Attachment" msgstr "" -#: part/models.py:3654 +#: part/models.py:3641 msgid "Does this test require a file attachment when adding a test result?" msgstr "" -#: part/models.py:3660 part/models.py:3804 templates/js/translated/part.js:1643 +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 msgid "Choices" msgstr "" -#: part/models.py:3661 +#: part/models.py:3648 msgid "Valid choices for this test (comma-separated)" msgstr "" -#: part/models.py:3693 +#: part/models.py:3680 msgid "Part Parameter Template" msgstr "" -#: part/models.py:3720 +#: part/models.py:3707 msgid "Checkbox parameters cannot have units" msgstr "" -#: part/models.py:3725 +#: part/models.py:3712 msgid "Checkbox parameters cannot have choices" msgstr "" -#: part/models.py:3762 +#: part/models.py:3749 msgid "Parameter template name must be unique" msgstr "" -#: part/models.py:3777 +#: part/models.py:3764 msgid "Parameter Name" msgstr "" -#: part/models.py:3784 +#: part/models.py:3771 msgid "Physical units for this parameter" msgstr "" -#: part/models.py:3792 +#: part/models.py:3779 msgid "Parameter description" msgstr "" -#: part/models.py:3798 templates/js/translated/part.js:1634 +#: part/models.py:3785 templates/js/translated/part.js:1634 #: templates/js/translated/table_filters.js:837 msgid "Checkbox" msgstr "" -#: part/models.py:3799 +#: part/models.py:3786 msgid "Is this parameter a checkbox?" msgstr "" -#: part/models.py:3805 +#: part/models.py:3792 msgid "Valid choices for this parameter (comma-separated)" msgstr "" -#: part/models.py:3839 +#: part/models.py:3826 msgid "Part Parameter" msgstr "" -#: part/models.py:3865 +#: part/models.py:3852 msgid "Parameter cannot be modified - part is locked" msgstr "" -#: part/models.py:3903 +#: part/models.py:3890 msgid "Invalid choice for parameter value" msgstr "" -#: part/models.py:3952 +#: part/models.py:3939 msgid "Parent Part" msgstr "" -#: part/models.py:3960 part/models.py:4068 part/models.py:4069 +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 #: templates/InvenTree/settings/settings_staff_js.html:295 msgid "Parameter Template" msgstr "" -#: part/models.py:3966 +#: part/models.py:3953 msgid "Parameter Value" msgstr "" -#: part/models.py:4016 +#: part/models.py:4003 msgid "Part Category Parameter Template" msgstr "" -#: part/models.py:4075 templates/InvenTree/settings/settings_staff_js.html:304 +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 msgid "Default Value" msgstr "" -#: part/models.py:4076 +#: part/models.py:4063 msgid "Default Parameter Value" msgstr "" -#: part/models.py:4114 +#: part/models.py:4101 msgid "Part ID or part name" msgstr "" -#: part/models.py:4115 +#: part/models.py:4102 msgid "Unique part ID value" msgstr "" -#: part/models.py:4117 +#: part/models.py:4104 msgid "Part IPN value" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "Level" msgstr "" -#: part/models.py:4118 +#: part/models.py:4105 msgid "BOM level" msgstr "" -#: part/models.py:4228 +#: part/models.py:4215 msgid "BOM item cannot be modified - assembly is locked" msgstr "" -#: part/models.py:4235 +#: part/models.py:4222 msgid "BOM item cannot be modified - variant assembly is locked" msgstr "" -#: part/models.py:4245 +#: part/models.py:4232 msgid "Select parent part" msgstr "" -#: part/models.py:4255 +#: part/models.py:4242 msgid "Sub part" msgstr "" -#: part/models.py:4256 +#: part/models.py:4243 msgid "Select part to be used in BOM" msgstr "" -#: part/models.py:4267 +#: part/models.py:4254 msgid "BOM quantity for this BOM item" msgstr "" -#: part/models.py:4273 +#: part/models.py:4260 msgid "This BOM item is optional" msgstr "" -#: part/models.py:4279 +#: part/models.py:4266 msgid "This BOM item is consumable (it is not tracked in build orders)" msgstr "" -#: part/models.py:4286 part/templates/part/upload_bom.html:55 +#: part/models.py:4273 part/templates/part/upload_bom.html:55 msgid "Overage" msgstr "" -#: part/models.py:4287 +#: part/models.py:4274 msgid "Estimated build wastage quantity (absolute or percentage)" msgstr "" -#: part/models.py:4294 +#: part/models.py:4281 msgid "BOM item reference" msgstr "" -#: part/models.py:4302 +#: part/models.py:4289 msgid "BOM item notes" msgstr "" -#: part/models.py:4308 +#: part/models.py:4295 msgid "Checksum" msgstr "" -#: part/models.py:4309 +#: part/models.py:4296 msgid "BOM line checksum" msgstr "" -#: part/models.py:4314 templates/js/translated/table_filters.js:181 +#: part/models.py:4301 templates/js/translated/table_filters.js:181 msgid "Validated" msgstr "" -#: part/models.py:4315 +#: part/models.py:4302 msgid "This BOM item has been validated" msgstr "" -#: part/models.py:4320 part/templates/part/upload_bom.html:57 +#: part/models.py:4307 part/templates/part/upload_bom.html:57 #: templates/js/translated/bom.js:1054 #: templates/js/translated/table_filters.js:185 #: templates/js/translated/table_filters.js:218 msgid "Gets inherited" msgstr "" -#: part/models.py:4321 +#: part/models.py:4308 msgid "This BOM item is inherited by BOMs for variant parts" msgstr "" -#: part/models.py:4327 +#: part/models.py:4314 msgid "Stock items for variant parts can be used for this BOM item" msgstr "" -#: part/models.py:4412 stock/models.py:689 +#: part/models.py:4399 stock/models.py:689 msgid "Quantity must be integer value for trackable parts" msgstr "" -#: part/models.py:4422 part/models.py:4424 +#: part/models.py:4409 part/models.py:4411 msgid "Sub part must be specified" msgstr "" -#: part/models.py:4561 +#: part/models.py:4554 msgid "BOM Item Substitute" msgstr "" -#: part/models.py:4582 +#: part/models.py:4575 msgid "Substitute part cannot be the same as the master part" msgstr "" -#: part/models.py:4595 +#: part/models.py:4588 msgid "Parent BOM item" msgstr "" -#: part/models.py:4603 +#: part/models.py:4596 msgid "Substitute part" msgstr "" -#: part/models.py:4619 +#: part/models.py:4612 msgid "Part 1" msgstr "" -#: part/models.py:4627 +#: part/models.py:4620 msgid "Part 2" msgstr "" -#: part/models.py:4628 +#: part/models.py:4621 msgid "Select Related Part" msgstr "" -#: part/models.py:4647 +#: part/models.py:4640 msgid "Part relationship cannot be created between a part and itself" msgstr "" -#: part/models.py:4652 +#: part/models.py:4645 msgid "Duplicate relationship already exists" msgstr "" @@ -8593,7 +8601,7 @@ msgstr "" msgid "Part Pricing" msgstr "" -#: plugin/api.py:172 +#: plugin/api.py:174 msgid "Plugin cannot be deleted as it is currently active" msgstr "" @@ -9001,44 +9009,44 @@ msgstr "" msgid "The Supplier which acts as 'TME'" msgstr "" -#: plugin/installer.py:194 plugin/installer.py:274 +#: plugin/installer.py:199 plugin/installer.py:282 msgid "Only staff users can administer plugins" msgstr "" -#: plugin/installer.py:197 +#: plugin/installer.py:202 msgid "Plugin installation is disabled" msgstr "" -#: plugin/installer.py:241 +#: plugin/installer.py:246 msgid "Installed plugin successfully" msgstr "" -#: plugin/installer.py:246 +#: plugin/installer.py:251 #, python-brace-format msgid "Installed plugin into {path}" msgstr "" -#: plugin/installer.py:265 +#: plugin/installer.py:273 msgid "Plugin was not found in registry" msgstr "" -#: plugin/installer.py:268 +#: plugin/installer.py:276 msgid "Plugin is not a packaged plugin" msgstr "" -#: plugin/installer.py:271 +#: plugin/installer.py:279 msgid "Plugin package name not found" msgstr "" -#: plugin/installer.py:291 +#: plugin/installer.py:299 msgid "Plugin uninstalling is disabled" msgstr "" -#: plugin/installer.py:295 +#: plugin/installer.py:303 msgid "Plugin cannot be uninstalled as it is currently active" msgstr "" -#: plugin/installer.py:308 +#: plugin/installer.py:316 msgid "Uninstalled plugin successfully" msgstr "" @@ -9156,6 +9164,38 @@ msgstr "" msgid "InvenTree Contributors" msgstr "" +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + #: plugin/serializers.py:81 msgid "Source URL" msgstr "" @@ -9234,6 +9274,30 @@ msgstr "" msgid "Delete the plugin configuration from the database" msgstr "" +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + #: report/api.py:88 msgid "No valid objects provided to template" msgstr "" @@ -9518,7 +9582,7 @@ msgstr "" msgid "Test" msgstr "" -#: report/templates/report/inventree_test_report.html:103 stock/models.py:2535 +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 msgid "Result" msgstr "" @@ -9892,7 +9956,7 @@ msgstr "" msgid "Serial numbers already exist" msgstr "" -#: stock/models.py:1636 stock/models.py:2438 +#: stock/models.py:1636 stock/models.py:2436 msgid "Test template does not exist" msgstr "" @@ -9940,67 +10004,67 @@ msgstr "" msgid "StockItem cannot be moved as it is not in stock" msgstr "" -#: stock/models.py:2337 +#: stock/models.py:2335 msgid "Stock Item Tracking" msgstr "" -#: stock/models.py:2370 +#: stock/models.py:2368 msgid "Entry notes" msgstr "" -#: stock/models.py:2410 +#: stock/models.py:2408 msgid "Stock Item Test Result" msgstr "" -#: stock/models.py:2441 +#: stock/models.py:2439 msgid "Value must be provided for this test" msgstr "" -#: stock/models.py:2445 +#: stock/models.py:2443 msgid "Attachment must be uploaded for this test" msgstr "" -#: stock/models.py:2450 +#: stock/models.py:2448 msgid "Invalid value for this test" msgstr "" -#: stock/models.py:2535 +#: stock/models.py:2533 msgid "Test result" msgstr "" -#: stock/models.py:2542 +#: stock/models.py:2540 msgid "Test output value" msgstr "" -#: stock/models.py:2550 stock/serializers.py:245 +#: stock/models.py:2548 stock/serializers.py:245 msgid "Test result attachment" msgstr "" -#: stock/models.py:2554 +#: stock/models.py:2552 msgid "Test notes" msgstr "" -#: stock/models.py:2562 templates/js/translated/stock.js:1633 +#: stock/models.py:2560 templates/js/translated/stock.js:1633 msgid "Test station" msgstr "" -#: stock/models.py:2563 +#: stock/models.py:2561 msgid "The identifier of the test station where the test was performed" msgstr "" -#: stock/models.py:2569 +#: stock/models.py:2567 msgid "Started" msgstr "" -#: stock/models.py:2570 +#: stock/models.py:2568 msgid "The timestamp of the test start" msgstr "" -#: stock/models.py:2576 +#: stock/models.py:2574 msgid "Finished" msgstr "" -#: stock/models.py:2577 +#: stock/models.py:2575 msgid "The timestamp of the test finish" msgstr "" diff --git a/src/frontend/src/locales/ar/messages.po b/src/frontend/src/locales/ar/messages.po index eff6eee3a4..60fe2c0680 100644 --- a/src/frontend/src/locales/ar/messages.po +++ b/src/frontend/src/locales/ar/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ar\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "إزالة الخط" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "آخر جلب" msgid "Base currency" msgstr "العملة الأساسية" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/bg/messages.po b/src/frontend/src/locales/bg/messages.po index 96dd562220..3e0ace0075 100644 --- a/src/frontend/src/locales/bg/messages.po +++ b/src/frontend/src/locales/bg/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bg\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/cs/messages.po b/src/frontend/src/locales/cs/messages.po index af420710b9..418500a884 100644 --- a/src/frontend/src/locales/cs/messages.po +++ b/src/frontend/src/locales/cs/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: cs\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Czech\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -70,7 +70,7 @@ msgstr "Tisk štítků byl úspěšně dokončen" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Odstranit přidružený obrázek z této položky?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Odstranit" @@ -188,7 +188,6 @@ msgstr "Vymazat" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Odeslat" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Aktualizovat" @@ -437,7 +436,7 @@ msgstr "Aktualizovat" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Odstranit" @@ -498,6 +497,7 @@ msgstr "Nebo pokračovat jinými metodami" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Uživatelské jméno" @@ -608,9 +608,10 @@ msgstr "Server" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Hledat" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Zjistit více" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Neznámá chyba" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Server" @@ -1267,7 +1268,7 @@ msgstr "Nastavení účtu" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Nastavení systému" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Centrum správce" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Stránky" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Pluginy" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "O aplikaci" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "Díl" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Díly" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Šablona parametru dílu" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Dodavatel dílu" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Skladová položka" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Skladové položky" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Umístění skladu" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Historie skladu" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Historie skladů" + +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Firma" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Firmy" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Firma" msgid "Project Code" msgstr "Kód projektu" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Kódy projektu" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adresa" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adresy" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Kontakt" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Kontakty" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Správce" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Správci" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Uživatel" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Díly" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Skladové položky" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Historie skladů" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Firmy" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Kódy projektu" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adresy" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Kontakty" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Správci" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Uživatelé" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Skupiny" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Neaktivní" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Zásoby" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Sériové číslo" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Nastavení zobrazení" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Barevný režim" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Jazyk" @@ -2420,7 +2419,7 @@ msgstr "Domů" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Přehled" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Webová stránka" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Nákup" @@ -2579,9 +2573,9 @@ msgstr "Nákup" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Prodej" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Stav" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Na skladě" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Přesunout" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Přidat" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Počet" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,17 +3608,46 @@ msgstr "Není skenováno" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Jméno" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Příjmení" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,15 +3658,28 @@ msgstr "Příjmení" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Jméno:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Příjmení:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Vlastní jednotky" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Parametry dílu" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Parametry kategorie" @@ -3879,24 +3944,24 @@ msgstr "Parametry kategorie" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Stroje" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Rychlá volba" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Přidat nového uživatele" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Pokročilá nastavení" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Info" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Přihlášení" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Čárové kódy" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Ceník" @@ -4045,41 +4122,49 @@ msgstr "Ceník" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Štítky" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Účet" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "Označit jako nepřečtenou" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Označit jako nepřečtenou" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Reference" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "Reference" msgid "Description" msgstr "Popis" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Upravit společnost" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/da/messages.po b/src/frontend/src/locales/da/messages.po index 7014f15be4..f3177deba2 100644 --- a/src/frontend/src/locales/da/messages.po +++ b/src/frontend/src/locales/da/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: da\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/de/messages.po b/src/frontend/src/locales/de/messages.po index 26b3d1370a..1547e65115 100644 --- a/src/frontend/src/locales/de/messages.po +++ b/src/frontend/src/locales/de/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: de\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Etikettendruck erfolgreich abgeschlossen" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Verknüpftes Bild von diesem Teil entfernen?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Entfernen" @@ -188,7 +188,6 @@ msgstr "Leeren" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Speichern" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Fehler für ein oder mehrere Formularfelder vorhanden" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Aktualisieren" @@ -437,7 +436,7 @@ msgstr "Aktualisieren" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Löschen" @@ -498,6 +497,7 @@ msgstr "Oder mit anderen Methoden fortfahren" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Nutzername" @@ -608,9 +608,10 @@ msgstr "Adresse" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "{0} Symbole" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Suche" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Mehr lesen" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Unbekannter Fehler" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "Fehlerkorrektur-Level auswählen" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Link" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Dialog schließen" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Server" @@ -1267,7 +1268,7 @@ msgstr "Benutzereinstellungen" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Einstellungen" @@ -1286,7 +1287,7 @@ msgstr "Farbmodus ändern" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Adminbereich" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Seiten" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Plugins" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Über uns" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Keine Ergebnisse" msgid "No results available for search query" msgstr "Keine Ergebnisse für Suchanfrage verfügbar" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Unbekanntes Modell: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Unbekanntes Modell: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Unbekanntes Modell: {model}" msgid "Part" msgstr "Teil" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Teile" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Teil Parametervorlage" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Teil Parametervorlagen" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Testvorlage für Teil" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Testvorlagen für Teil" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Zuliefererteil" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Zuliefererteile" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Herstellerteil" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Herstellerteile" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Teilkategorie" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Teil-Kategorien" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Lagerartikel" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Lagerartikel" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Lagerort" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Lagerorte" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "Lagerort Typ" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Lagerort Typen" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Lagerhistorie" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Bestandshistorie" + +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" msgstr "Bauauftrag" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Builds" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "Bauauftragsposition" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "Bauauftragspositionen" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Firma" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Unternehmen" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Firma" msgid "Project Code" msgstr "Projekt-Code" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Projektnummern" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Einkaufsbestellung" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Bestellungen" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Bestellposition" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Bestellpositionen" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Verkaufsauftrag" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Aufträge" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Versand der Bestellung" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Versand der Bestellungen" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Rückgabe Auftrag" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Reklamationen" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adresse" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adressen" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Kontakt" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Kontakte" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Eigentümer" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Eigentümer" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Nutzer" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Gruppe" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "Importsitzung" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Plugin-Konfiguration" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Teile" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Teil Parametervorlagen" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Testvorlagen für Teil" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Zuliefererteile" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Herstellerteile" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Teil-Kategorien" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Lagerartikel" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Lagerorte" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "Lagerort Typen" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Bestandshistorie" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Bauaufträge" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "Bauauftragspositionen" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Unternehmen" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Projektnummern" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Nachbestellungen" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Aufträge" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Versand der Bestellungen" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Reklamationen" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adressen" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Kontakte" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Eigentümer" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Benutzer" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Gruppe" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Gruppen" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "Importsitzung" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "Importsitzungen" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Plugin-Konfiguration" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Plugin-Konfigurationen" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Sendung" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inaktiv" @@ -1795,17 +1802,17 @@ msgstr "Kein Bestand" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Lager" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Seriennummer" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "Keine Einstellungen angegeben" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "Keine Einstellungen angegeben" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Anzeigeneinstellungen" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Farbmodus" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Sprache" @@ -2420,7 +2419,7 @@ msgstr "Startseite" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Dashboard" @@ -2548,7 +2547,7 @@ msgstr "Aktuelles" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Webseite" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Bauauftrag" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Einkauf" @@ -2579,9 +2573,9 @@ msgstr "Einkauf" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Verkäufe" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "Zeile entfernen" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "Quell Lagerort" @@ -2917,7 +2911,7 @@ msgstr "Notiz hinzufügen" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "Bei bereits vorhandenen Lagerbestand einbuchen" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "Seriennummern" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "Verpackung" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Status" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "Notiz" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "SKU" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Seriennummern für neue Lagerartikel eingeben (oder leer lassen)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "Lagerbestand Status" @@ -3048,7 +3042,7 @@ msgstr "Lagerbestand Status" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "Zum Standard-Lagerort verschieben" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Auf Lager" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Verschieben" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Hinzufügen" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Anzahl" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "Bestand entfernen" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Bestand verschieben" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Bestand zählen" @@ -3610,17 +3608,46 @@ msgstr "Es wird nicht gescannt" msgid "Select Camera" msgstr "Kamera auswählen" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Kontodetails" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Vorname" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Nachname" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,16 +3658,29 @@ msgstr "Nachname" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Vorname:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Nachname:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Pseudosprache verwenden" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "Administrator" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "Keine Token konfiguriert" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "Keine Token konfiguriert" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "Barren" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "Oval" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "Punkte" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Theme" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Primärfarbe" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Pseudosprache verwenden" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Weiße Farbe" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Schwarze Farbe" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Rahmen Radius" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Lader" @@ -3838,19 +3902,19 @@ msgstr "Letzter Abruf" msgid "Base currency" msgstr "Basiswährung" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Hintergrundprozesse" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Fehlerberichte" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Währungen" @@ -3858,20 +3922,21 @@ msgstr "Währungen" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Kundenspezifische Einheiten" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Teile Parameter" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Kategorie Parameter" @@ -3879,24 +3944,24 @@ msgstr "Kategorie Parameter" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Maschinen" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Schnell-Auswahl" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Neuen Benutzer hinzufügen" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Erweiterte Optionen" @@ -3912,19 +3977,19 @@ msgstr "Maschinen-Fehlerstapel" msgid "There are no machine registry errors." msgstr "Es gibt keine Fehler in der Maschinenregistry." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Info" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "Externe Plugins sind für diese InvenTree-Installation nicht aktiviert." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "Externe Plugins sind für diese InvenTree-Installation nicht aktiviert." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "Externe Plugins sind für diese InvenTree-Installation nicht aktiviert." #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Plugin-Fehler" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Plugin Einstellungen" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Plugin-Fehler" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4017,6 +4082,18 @@ msgstr "Fehlgeschlagene Aufgaben" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Einstellungen die für den Benutzer Lebenszyklus relevant sind. Mehr verfügbar in" @@ -4025,15 +4102,15 @@ msgstr "Einstellungen die für den Benutzer Lebenszyklus relevant sind. Mehr ver msgid "System settings" msgstr "Systemeinstellungen" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Anmelden" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Barcode" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Preise" @@ -4045,41 +4122,49 @@ msgstr "Preise" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Beschriftungen" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Berichte" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Inventur" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Bauaufträge" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Zu Benutzereinstellungen wechseln" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Konto" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Sicherheit" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Anzeigeoptionen" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Zu Systemeinstellungen wechseln" @@ -4115,8 +4200,8 @@ msgstr "Als ungelesen markieren" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Als ungelesen markieren" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Referenz" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "Referenz" msgid "Description" msgstr "Beschreibung" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "Übergeordneter Bauauftrag" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Bauauftrag Anzahl" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Fertiggestellte Endprodukte" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Aufgegeben von" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "Aufgegeben von" msgid "Responsible" msgstr "Verantwortlich" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Erstellt" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Zieldatum" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "Abgeschlossen" @@ -4229,7 +4314,7 @@ msgstr "Abgeschlossen" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "Beliebiger Lagerort" @@ -4237,7 +4322,7 @@ msgstr "Beliebiger Lagerort" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "Ziel Lagerort" @@ -4253,69 +4338,69 @@ msgstr "Ziel Lagerort" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Bauauftrag Details" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Positionen" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Unvollständige Endprodukte" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Verbrauchte Bestände" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Unter-Bauaufträge" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Testergebnisse" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Anhänge" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Notizen" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Bauauftrag bearbeiten" @@ -4333,126 +4418,126 @@ msgstr "Bauauftrag bearbeiten" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Neuer Bauauftrag" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "Bauauftrag abbrechen" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Bauauftrag-Aktionen" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "Bestellung stornieren" @@ -4464,24 +4549,24 @@ msgstr "Bestellung stornieren" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "Telefonnummer" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "E-Mail-Adresse" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "Standardwährung" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "Standardwährung" msgid "Supplier" msgstr "Lieferant" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Hersteller" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "Hersteller" msgid "Customer" msgstr "Kunde" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Details" @@ -4520,11 +4605,11 @@ msgstr "Details" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Hergestellte Teile" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Zuliefererteile" @@ -4532,84 +4617,84 @@ msgstr "Zuliefererteile" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Zugeordneter Bestand" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Unternehmen bearbeiten" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "Firma löschen" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "Firmen-Aktionen" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "Internes Teil" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "Externer Link" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "Teilenummer des Herstellers" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "Herstellerdetails" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "Herstellerteil Details" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parameter" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Lieferanten" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "Herstellerteil bearbeiten" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "Herstellerteil hinzufügen" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "Herstellerteil löschen" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "Herstellerteil Aktionen" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "Herstellerteil" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "Herstellerteil" msgid "Pack Quantity" msgstr "Verpackungsmenge" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "Lieferantenverfügbarkeit" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "Verfügbarkeit aktualisiert" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "Verfügbarkeit" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "Zuliefererteil Details" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Empfangene Lagerartikel" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "Zulieferer-Preise" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "Zuliefererteil Aktionen" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Zuliefererteil bearbeiten" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Zuliefererteil entfernen" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Zuliefererteil hinzufügen" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Pfad" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "Übergeordnete Kategorie" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "Unterkategorien" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Strukturell" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "Übergeordneter Standard-Standort" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "Standard-Lagerort" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "Oberste Teile-Kategorie" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "Teilekategorie bearbeiten" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "Elemente löschen" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "Teile-Kategorie löschen" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "Teile Aktionen" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "Aktion für Teile in dieser Kategorie" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "Unterkategorien-Aktion" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "Aktion für untergeordnete Kategorien in dieser Kategorie" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "Kategorieaktionen" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "Kategorie-Details" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "Variante von" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "Revision von" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Version" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Kategorie" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "Standard Lagerort" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "Standard-Lagerort der Kategorie" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Einheiten" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Schlüsselwörter" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "Schlüsselwörter" msgid "Available Stock" msgstr "Verfügbarer Bestand" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "Minimaler Bestand" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "Bestellt" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "Bauaufträgen zugeordnet" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "Aufträgen zugeordnet" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Herstellbar" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "In Produktion" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "Gesperrt" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "Vorlagenteil" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Baugruppe" @@ -4846,7 +4931,7 @@ msgstr "Baugruppe" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "Komponente" @@ -4854,114 +4939,114 @@ msgstr "Komponente" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "Nachverfolgbares Teil" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "Käufliches Teil" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "Verkäufliches Teil" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "Virtuelles Teil" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Erstelldatum" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Erstellt von" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Standard Zulieferer" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Preisspanne" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Letzte Inventur" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Inventur durch" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Teil-Details" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Varianten" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Ferienguthaben/Freitage" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Bauauftragszuweisungen" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Verkaufsauftragszuweisungen" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Stückliste" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Verwendet in" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Teilbepreisung" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Hersteller" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Terminierung" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Testvorlagen" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Zugehörige Teile" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "Zugehörige Teile" msgid "Available" msgstr "Verfügbar" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "Kein Bestand" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "Erforderlich" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "In Bestellung" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Teil bearbeiten" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "Teil hinzufügen" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "Teil löschen" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "Das Löschen dieses Teils kann nicht rückgängig gemacht werden" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Lager-Aktionen" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Bestand zählen" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Bestand übertragen" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Teile-Aktionen" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "Gesamt Preise" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "Zuletzt aktualisiert" @@ -5242,23 +5327,23 @@ msgstr "Lieferant Preis" msgid "Variant Part" msgstr "Variantenteil" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "Bestellung bearbeiten" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "Bestellung hinzufügen" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "Lieferanten-Referenz" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "Abgeschlossene Positionen" @@ -5268,91 +5353,91 @@ msgstr "Abgeschlossene Positionen" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "Bestellwährung" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "Gesamtkosten" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "Erstellt am" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Bestelldetails" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Bestellaktionen" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Kundenreferenz" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "Rücksendeauftrag bearbeiten" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "Neuer Rücksendeauftrag" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "Kunden" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Abgeschlossene Sendungen" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "Auftrag bearbeiten" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "Auftrag hinzufügen" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "Bestellung versenden" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "Übergeordneter Lagerort" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "Unter-Lagerorte" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "Extern" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "Lagerort Typ" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "Oberster Lagerort" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "Lagerort-Details" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "Standardteile" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "Lagerort bearbeiten" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "Lagerort löschen" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "Bestandsaktionen" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "Aktion für Lagerartikel an diesem Lagerort" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "Aktion für untergeordnete Lagerorte" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "Aktion für untergeordnete Lagerorte an diesem Lagerort" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "Lagerort Aktionen" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Basisteil" @@ -5475,11 +5560,11 @@ msgstr "Basisteil" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "Verbaut in" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "Verbraucht von" @@ -5487,31 +5572,37 @@ msgstr "Verbraucht von" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "Bauauftrag" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "Lagerdetails" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Bestandsverfolgung" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Test Daten" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Installierte Elemente" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Untergeordnete Objekte" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Lagerartikel bearbeiten" @@ -5519,38 +5610,38 @@ msgstr "Lagerartikel bearbeiten" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "Lagerartikel löschen" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Lagervorgänge" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Bestand zählen" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Lagerbestand hinzufügen" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Lagerbestand entfernen" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Verschieben" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Lagerbestand verschieben" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "Lagerartikel Aktionen" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Filter zurücksetzen" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Keine Einträge gefunden" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "Der Server hat einen falschen Datentyp zurückgegeben" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Ungültige Anfrage" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Nicht autorisiert" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Verweigert" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Nicht gefunden" @@ -5696,18 +5787,14 @@ msgstr "Nicht gefunden" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "Diese Aktion kann nicht rückgängig gemacht werden!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "Diese Aktion kann nicht rückgängig gemacht werden!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "Diese Aktion kann nicht rückgängig gemacht werden!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "Diese Aktion kann nicht rückgängig gemacht werden!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Barcode-Aktionen" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Ausgewählte Datensätze löschen" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Daten aktualisieren" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Tabellenfilter" @@ -6560,7 +6651,7 @@ msgstr "Anbieterdatei" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Integriert" @@ -7137,7 +7228,7 @@ msgstr "Plugin aktivieren" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Deaktivieren" @@ -7145,7 +7236,7 @@ msgstr "Deaktivieren" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Aktivieren" @@ -7173,75 +7264,75 @@ msgstr "Aktivieren" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "Deinstallieren" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "Plugin installieren" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "Installieren" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "Plugin erfolgreich installiert" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "Plugin deinstallieren" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "Plugin deinstallieren bestätigen" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "Das ausgewählte Plugin wird deinstalliert." -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "Diese Aktion kann nicht rückgängig gemacht werden." -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "Plugin erfolgreich deinstalliert" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "Plugin löschen" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "Durch das Löschen dieser Plugin-Konfiguration werden alle zugehörigen Einstellungen und Daten entfernt. Soll dieses Plugin gelöscht werden?" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "Erweiterungen neu geladen" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "Plugins wurden erfolgreich neu geladen" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "Plugins neu laden" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "Plugin installieren" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "Plugin Detail" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Beispiel" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Installiert" @@ -7782,10 +7873,6 @@ msgstr "Mitarbeiter" msgid "Show staff users" msgstr "Mitarbeiter anzeigen" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "Administrator" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "Administratoren anzeigen" @@ -7872,8 +7959,12 @@ msgid "Filter by stock status" msgstr "Nach Lagerstatus filtern" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" -msgstr "Zeige Bestand für Baugruppen" +msgid "Show stock for assembled parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" diff --git a/src/frontend/src/locales/el/messages.po b/src/frontend/src/locales/el/messages.po index 5af3363a17..a040351f63 100644 --- a/src/frontend/src/locales/el/messages.po +++ b/src/frontend/src/locales/el/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: el\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Αφαίρεση της σχετικής εικόνας από αυτό #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Αφαίρεση" @@ -188,7 +188,6 @@ msgstr "Εκκαθάριση" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Υποβολή" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Ενημέρωση" @@ -437,7 +436,7 @@ msgstr "Ενημέρωση" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Διαγραφή" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Ανενεργό" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/en/messages.po b/src/frontend/src/locales/en/messages.po index 0ddc80abf1..b6dc08f8b2 100644 --- a/src/frontend/src/locales/en/messages.po +++ b/src/frontend/src/locales/en/messages.po @@ -65,7 +65,7 @@ msgstr "Label printing completed successfully" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -153,7 +153,7 @@ msgstr "Remove the associated image from this item?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Remove" @@ -183,7 +183,6 @@ msgstr "Clear" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Submit" @@ -422,7 +421,7 @@ msgid "Errors exist for one or more form fields" msgstr "Errors exist for one or more form fields" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Update" @@ -432,7 +431,7 @@ msgstr "Update" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Delete" @@ -493,6 +492,7 @@ msgstr "Or continue with other methods" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Username" @@ -603,9 +603,10 @@ msgstr "Host" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -682,7 +683,7 @@ msgid "{0} icons" msgstr "{0} icons" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Search" @@ -963,7 +964,7 @@ msgid "Read More" msgstr "Read More" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Unknown error" @@ -1033,10 +1034,10 @@ msgid "Select Error Correction Level" msgstr "Select Error Correction Level" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Link" @@ -1159,7 +1160,7 @@ msgid "Close modal" msgstr "Close modal" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Server" @@ -1262,7 +1263,7 @@ msgstr "Account settings" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "System Settings" @@ -1281,7 +1282,7 @@ msgstr "Change Color Mode" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Admin Center" @@ -1316,8 +1317,8 @@ msgid "Pages" msgstr "Pages" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Plugins" @@ -1331,8 +1332,8 @@ msgid "About" msgstr "About" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1393,23 +1394,27 @@ msgstr "No results" msgid "No results available for search query" msgstr "No results available for search query" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "Error occurred while rendering plugin content" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "Plugin did not provide panel rendering function" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "No content provided for this plugin" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "Error Loading Plugin" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Unknown model: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1422,8 +1427,8 @@ msgstr "Unknown model: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1433,76 +1438,148 @@ msgstr "Unknown model: {model}" msgid "Part" msgstr "Part" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Parts" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Part Parameter Template" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Part Parameter Templates" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Part Test Template" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Part Test Templates" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Supplier Part" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Supplier Parts" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Manufacturer Part" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Manufacturer Parts" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Part Category" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Part Categories" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Stock Item" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Stock Items" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Stock Location" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Stock Locations" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "Stock Location Type" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Stock Location Types" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Stock History" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Stock Histories" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Build" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Builds" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "Build Line" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "Build Lines" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "Build Item" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "Build Items" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Company" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Companies" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1511,263 +1588,193 @@ msgstr "Company" msgid "Project Code" msgstr "Project Code" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Project Codes" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Purchase Order" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Purchase Orders" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Purchase Order Line" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Purchase Order Lines" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Sales Order" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Sales Orders" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Sales Order Shipment" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Sales Order Shipments" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Return Order" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Return Orders" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "Return Order Line Item" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "Return Order Line Items" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Address" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Addresses" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Contact" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Contacts" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Owner" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Owners" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "User" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Group" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "Import Session" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "Label Template" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "Report Template" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Plugin Configuration" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "Content Type" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "Unknown Model" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Parts" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Part Parameter Templates" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Part Test Templates" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Supplier Parts" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Manufacturer Parts" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Part Categories" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Stock Items" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Stock Locations" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "Stock Location Types" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Stock Histories" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Build Orders" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "Build Lines" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "Build Items" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Companies" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Project Codes" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Purchase Orders" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "Purchase Order Line Items" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Sales Orders" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Sales Order Shipments" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Return Orders" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "Return Order Line Items" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Addresses" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Contacts" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Owners" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Users" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Group" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Groups" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "Import Session" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "Import Sessions" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "Label Template" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "Label Templates" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "Report Template" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "Report Templates" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Plugin Configuration" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Plugin Configurations" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "Content Type" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "Content Types" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "Unknown Models" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1775,9 +1782,9 @@ msgstr "Shipment" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inactive" @@ -1790,17 +1797,17 @@ msgstr "No stock" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Stock" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1813,8 +1820,8 @@ msgstr "Serial Number" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2178,14 +2185,6 @@ msgstr "No settings specified" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2199,17 +2198,17 @@ msgstr "No settings specified" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Display Settings" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Color Mode" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Language" @@ -2415,7 +2414,7 @@ msgstr "Home" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Dashboard" @@ -2543,7 +2542,7 @@ msgstr "Current News" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Website" @@ -2555,18 +2554,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Build" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Purchasing" @@ -2574,9 +2568,9 @@ msgstr "Purchasing" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Sales" @@ -2813,7 +2807,7 @@ msgid "Remove line" msgstr "Remove line" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "Source Location" @@ -2912,7 +2906,7 @@ msgstr "Add Note" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2931,9 +2925,9 @@ msgid "Store with already received stock" msgstr "Store with already received stock" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2946,18 +2940,18 @@ msgstr "Serial numbers" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "Packaging" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2973,13 +2967,13 @@ msgid "Status" msgstr "Status" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "Note" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "SKU" @@ -3034,7 +3028,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Enter serial numbers for new stock (or leave blank)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "Stock Status" @@ -3043,7 +3037,7 @@ msgstr "Stock Status" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3065,8 +3059,8 @@ msgstr "Move to default location" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "In Stock" @@ -3076,14 +3070,14 @@ msgid "Move" msgstr "Move" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Add" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Count" @@ -3096,12 +3090,16 @@ msgid "Remove Stock" msgstr "Remove Stock" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Transfer Stock" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Count Stock" @@ -3605,17 +3603,46 @@ msgstr "Not scanning" msgid "Select Camera" msgstr "Select Camera" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "Edit User Information" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "User details updated" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Account Details" +msgid "User Details" +msgstr "User Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "User Actions" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "Edit User" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "Set Password" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "Set User Password" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3626,16 +3653,29 @@ msgstr "Last name" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "First name:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "First Name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "Last Name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "Staff Access" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "Superuser" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3732,7 +3772,7 @@ msgid "No tokens configured" msgstr "No tokens configured" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3744,7 +3784,7 @@ msgstr "No tokens configured" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3761,38 +3801,62 @@ msgid "Last Seen" msgstr "Last Seen" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "bars" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "oval" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "dots" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Theme" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "Bars" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "Oval" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "Dots" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Use pseudo language" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "Highlight color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "Example" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "White color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Black color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Border Radius" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Loader" @@ -3833,19 +3897,19 @@ msgstr "Last fetched" msgid "Base currency" msgstr "Base currency" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "Data Import" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Background Tasks" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Error Reports" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Currencies" @@ -3853,20 +3917,21 @@ msgstr "Currencies" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "Custom States" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Custom Units" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Part Parameters" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Category Parameters" @@ -3874,24 +3939,24 @@ msgstr "Category Parameters" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "Location Types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Machines" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Quick Actions" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Add a new user" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Advanced Options" @@ -3907,19 +3972,19 @@ msgstr "Machine Error Stack" msgid "There are no machine registry errors." msgstr "There are no machine registry errors." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Info" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "External plugins are not enabled for this InvenTree installation." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "External plugins are not enabled for this InvenTree installation." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3928,14 +3993,14 @@ msgstr "External plugins are not enabled for this InvenTree installation." #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Plugin Errors" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Plugin Errors" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "Page Size" @@ -4012,6 +4077,18 @@ msgstr "Failed Tasks" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "Alias" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "Dimensionless" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "All units" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Select settings relevant for user lifecycle. More available in" @@ -4020,15 +4097,15 @@ msgstr "Select settings relevant for user lifecycle. More available in" msgid "System settings" msgstr "System settings" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Login" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Barcodes" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Pricing" @@ -4040,41 +4117,49 @@ msgstr "Pricing" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Labels" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Reporting" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Stocktake" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Build Orders" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Switch to User Setting" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Account" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Security" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Display Options" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Account Settings" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Switch to System Setting" @@ -4110,8 +4195,8 @@ msgstr "Mark as unread" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4121,26 +4206,26 @@ msgstr "Mark as unread" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Reference" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4158,29 +4243,29 @@ msgstr "Reference" msgid "Description" msgstr "Description" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "Parent Build" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Build Quantity" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Completed Outputs" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Issued By" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4188,15 +4273,15 @@ msgstr "Issued By" msgid "Responsible" msgstr "Responsible" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Created" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4210,7 +4295,7 @@ msgstr "Target Date" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "Completed" @@ -4224,7 +4309,7 @@ msgstr "Completed" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "Any location" @@ -4232,7 +4317,7 @@ msgstr "Any location" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "Destination Location" @@ -4248,69 +4333,69 @@ msgstr "Destination Location" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Build Details" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Line Items" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Incomplete Outputs" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "Allocated Stock" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Consumed Stock" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Child Build Orders" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Test Results" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "Test Statistics" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Attachments" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4320,7 +4405,7 @@ msgstr "Notes" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Edit Build Order" @@ -4328,126 +4413,126 @@ msgstr "Edit Build Order" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Add Build Order" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "Cancel Build Order" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "Order cancelled" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "Cancel this order" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "Hold Build Order" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "Place this order on hold" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "Place this order on hold" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "Order placed on hold" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "Issue Build Order" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "Issue this order" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "Issue this order" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "Order issued" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "Complete Build Order" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "Mark this order as complete" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "Order completed" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "Issue Order" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "Complete Order" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Build Order Actions" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "Edit order" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "Duplicate order" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "Hold order" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "Cancel order" @@ -4459,24 +4544,24 @@ msgstr "Cancel order" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "Phone Number" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "Email Address" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "Default Currency" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4484,21 +4569,21 @@ msgstr "Default Currency" msgid "Supplier" msgstr "Supplier" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Manufacturer" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4506,7 +4591,7 @@ msgstr "Manufacturer" msgid "Customer" msgstr "Customer" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Details" @@ -4515,11 +4600,11 @@ msgstr "Details" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Manufactured Parts" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Supplied Parts" @@ -4527,84 +4612,84 @@ msgstr "Supplied Parts" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Assigned Stock" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Edit Company" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "Delete Company" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "Company Actions" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "Internal Part" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "External Link" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "Manufacturer Part Number" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "Manufacturer Details" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "Manufacturer Part Details" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parameters" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Suppliers" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "Edit Manufacturer Part" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "Add Manufacturer Part" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "Delete Manufacturer Part" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "Manufacturer Part Actions" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "ManufacturerPart" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4612,163 +4697,163 @@ msgstr "ManufacturerPart" msgid "Pack Quantity" msgstr "Pack Quantity" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "Supplier Availability" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "Availability Updated" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "Availability" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "Supplier Part Details" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Received Stock" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "Supplier Pricing" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "Supplier Part Actions" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Edit Supplier Part" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Delete Supplier Part" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Add Supplier Part" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Path" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "Parent Category" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "Subcategories" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Structural" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "Parent default location" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "Default location" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "Top level part category" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "Edit Part Category" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "Delete items" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "Delete Part Category" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "Parts Action" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "Action for parts in this category" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "Child Categories Action" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "Action for child categories in this category" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "Category Actions" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "Category Details" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "Variant of" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "Revision of" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Revision" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Category" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "Default Location" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "Category Default Location" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Units" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Keywords" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4776,49 +4861,49 @@ msgstr "Keywords" msgid "Available Stock" msgstr "Available Stock" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "Variant Stock" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "Minimum Stock" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "On order" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "Required for Orders" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "Allocated to Build Orders" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "Allocated to Sales Orders" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Can Build" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "In Production" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4828,11 +4913,11 @@ msgstr "Locked" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "Template Part" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Assembled Part" @@ -4841,7 +4926,7 @@ msgstr "Assembled Part" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "Component Part" @@ -4849,114 +4934,114 @@ msgstr "Component Part" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "Testable Part" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "Trackable Part" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "Purchaseable Part" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "Saleable Part" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "Virtual Part" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Creation Date" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Created By" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Default Supplier" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Price Range" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Last Stocktake" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Stocktake By" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Part Details" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Variants" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Allocations" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Build Order Allocations" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Sales Order Allocations" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Bill of Materials" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Used In" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Part Pricing" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Manufacturers" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Scheduling" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Test Templates" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Related Parts" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4964,59 +5049,59 @@ msgstr "Related Parts" msgid "Available" msgstr "Available" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "No Stock" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "Required" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "On Order" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Edit Part" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "Add Part" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "Delete Part" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "Deleting this part cannot be reversed" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Stock Actions" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Count part stock" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Transfer part stock" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Part Actions" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "Select Part Revision" @@ -5177,7 +5262,7 @@ msgid "Overall Pricing" msgstr "Overall Pricing" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "Last Updated" @@ -5237,23 +5322,23 @@ msgstr "Supplier Price" msgid "Variant Part" msgstr "Variant Part" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "Edit Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "Add Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "Supplier Reference" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "Completed Line Items" @@ -5263,91 +5348,91 @@ msgstr "Completed Line Items" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "Order Currency" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "Total Cost" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "Created On" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Order Details" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "Extra Line Items" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "Issue Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "Cancel Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "Hold Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "Complete Purchase Order" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Order Actions" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Customer Reference" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "Edit Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "Add Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "Issue Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "Cancel Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "Order canceled" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "Hold Return Order" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "Complete Return Order" @@ -5355,15 +5440,15 @@ msgstr "Complete Return Order" msgid "Customers" msgstr "Customers" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Completed Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "Edit Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5373,92 +5458,92 @@ msgstr "Add Sales Order" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "Issue Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "Cancel Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "Hold Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "Complete Sales Order" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "Ship Order" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "Parent Location" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "Sublocations" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "External" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "Location Type" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "Top level stock location" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "Location Details" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "Default Parts" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "Edit Stock Location" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "Delete Stock Location" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "Items Action" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "Action for stock items in this location" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "Child Locations Action" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "Action for child locations in this location" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "Location Actions" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Base Part" @@ -5470,11 +5555,11 @@ msgstr "Base Part" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "Installed In" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "Consumed By" @@ -5482,31 +5567,37 @@ msgstr "Consumed By" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "Build Order" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "Stock Details" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Stock Tracking" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Test Data" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Installed Items" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Child Items" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Edit Stock Item" @@ -5514,38 +5605,38 @@ msgstr "Edit Stock Item" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "Delete Stock Item" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Stock Operations" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Count stock" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Add stock" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Remove stock" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Transfer" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Transfer stock" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "Stock Item Actions" @@ -5662,28 +5753,28 @@ msgid "Clear Filters" msgstr "Clear Filters" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "No records found" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "Server returned incorrect data type" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Bad request" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Unauthorized" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Forbidden" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Not found" @@ -5691,18 +5782,14 @@ msgstr "Not found" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "Delete Selected Items" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "Are you sure you want to delete the selected items?" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "This action cannot be undone!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5711,6 +5798,10 @@ msgstr "This action cannot be undone!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "This action cannot be undone!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5720,20 +5811,20 @@ msgstr "This action cannot be undone!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Barcode actions" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Delete selected records" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Refresh data" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Table filters" @@ -6555,7 +6646,7 @@ msgstr "Provider file" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Builtin" @@ -7132,7 +7223,7 @@ msgstr "Activate Plugin" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Deactivate" @@ -7140,7 +7231,7 @@ msgstr "Deactivate" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Activate" @@ -7168,75 +7259,75 @@ msgstr "Activate" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "Uninstall" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "Install plugin" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "Install" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "Plugin installed successfully" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "Uninstall Plugin" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "Confirm plugin uninstall" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "The selected plugin will be uninstalled." -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "This action cannot be undone." -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "Plugin uninstalled successfully" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "Delete Plugin" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "Plugins reloaded" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "Plugins were reloaded successfully" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "Reload Plugins" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "Install Plugin" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "Plugin Detail" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Sample" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Installed" @@ -7777,10 +7868,6 @@ msgstr "Staff" msgid "Show staff users" msgstr "Show staff users" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "Superuser" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "Show superusers" @@ -7867,8 +7954,12 @@ msgid "Filter by stock status" msgstr "Filter by stock status" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" -msgstr "Show stock for assmebled parts" +msgid "Show stock for assembled parts" +msgstr "Show stock for assembled parts" + +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" diff --git a/src/frontend/src/locales/es/messages.po b/src/frontend/src/locales/es/messages.po index f033b12482..b2ee899785 100644 --- a/src/frontend/src/locales/es/messages.po +++ b/src/frontend/src/locales/es/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Impresión de etiqueta completada con éxito" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -126,7 +126,7 @@ msgstr "Abrir spotlight" #: src/components/buttons/YesNoButton.tsx:16 msgid "Pass" -msgstr "" +msgstr "Aceptar" #: src/components/buttons/YesNoButton.tsx:17 msgid "Fail" @@ -158,7 +158,7 @@ msgstr "¿Eliminar la imagen asociada de este elemento?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Eliminar" @@ -188,7 +188,6 @@ msgstr "Borrar" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Enviar" @@ -407,11 +406,11 @@ msgstr "No tiene permisos para ver esta página." #: src/components/errors/ServerError.tsx:8 msgid "Server Error" -msgstr "" +msgstr "Error del servidor" #: src/components/errors/ServerError.tsx:9 msgid "A server error occurred" -msgstr "" +msgstr "Ha ocurrido un error con el servidor" #: src/components/forms/ApiForm.tsx:151 #: src/components/forms/ApiForm.tsx:568 @@ -424,10 +423,10 @@ msgstr "Error de formulario" #: src/components/forms/ApiForm.tsx:576 msgid "Errors exist for one or more form fields" -msgstr "" +msgstr "Existen errores para uno o más campos del formulario" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Actualizar" @@ -437,7 +436,7 @@ msgstr "Actualizar" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Eliminar" @@ -486,11 +485,11 @@ msgstr "Envío de correo exitoso" #: src/components/forms/AuthenticationForm.tsx:71 msgid "Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too." -msgstr "" +msgstr "Revisa tu bandeja de entrada para el enlace de inicio de sesión. Si tienes una cuenta, recibirás un enlace de inicio de sesión. Revisa también el correo no deseado." #: src/components/forms/AuthenticationForm.tsx:75 msgid "Mail delivery failed" -msgstr "" +msgstr "Error al enviar el correo" #: src/components/forms/AuthenticationForm.tsx:95 msgid "Or continue with other methods" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Nombre de usuario" @@ -577,7 +577,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:246 msgid "Password repeat" -msgstr "" +msgstr "Repetir contraseña" #: src/components/forms/AuthenticationForm.tsx:247 msgid "Repeat password" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Buscar" @@ -725,7 +726,7 @@ msgstr "" #: src/components/importer/ImportDataSelector.tsx:171 msgid "Please wait while the data is imported" -msgstr "" +msgstr "Por favor espere mientras los datos son importados" #: src/components/importer/ImportDataSelector.tsx:188 msgid "An error occurred while importing data" @@ -749,7 +750,7 @@ msgstr "" #: src/components/importer/ImportDataSelector.tsx:326 msgid "Accept" -msgstr "" +msgstr "Aceptar" #: src/components/importer/ImportDataSelector.tsx:359 msgid "Valid" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Leer más" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inactivo" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "Eliminar líneas" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Disponible" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "Últimas obtenidas" msgid "Base currency" msgstr "Divisa principal" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/es_MX/messages.po b/src/frontend/src/locales/es_MX/messages.po index 800d06437f..97a6d027ae 100644 --- a/src/frontend/src/locales/es_MX/messages.po +++ b/src/frontend/src/locales/es_MX/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es_MX\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Spanish, Mexico\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Impresión de etiqueta completada con éxito" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "¿Eliminar imagen asociada al artículo?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Eliminar" @@ -188,7 +188,6 @@ msgstr "Borrar" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Aceptar" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Nombre de usuario" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Órdenes de compra" + +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Ordenes de devolución" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Ordenes de Producción" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Órdenes de compra" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Ordenes de devolución" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inactivo" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Sitio web" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "En Stock" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Agregar" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Ingresar" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Códigos de barras" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Precios" @@ -4045,41 +4122,49 @@ msgstr "Precios" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Etiquetas" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Informes" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Ordenes de Producción" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Cambiar a Configuración de Usuario" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Cuenta" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Seguridad" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Opciones de visualización" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "Proveedor" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Detalles" @@ -4520,11 +4605,11 @@ msgstr "Detalles" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parámetros" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Proveedores" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "En producción" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Contar stock" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Agregar stock" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Remover stock" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Transferir" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Transferir stock" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/et/messages.po b/src/frontend/src/locales/et/messages.po index a6894c5060..7f5b641faa 100644 --- a/src/frontend/src/locales/et/messages.po +++ b/src/frontend/src/locales/et/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: et\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Sildi printimine õnnestus" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Kas soovite eemaldada seotud pildi sellest üksusest?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Eemalda" @@ -188,7 +188,6 @@ msgstr "Puhasta" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Esita" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Värskenda" @@ -437,7 +436,7 @@ msgstr "Värskenda" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Kustuta" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Kasutajanimi" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Otsing" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Server" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Teave" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Kasutaja" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Kasutajad" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Keel" @@ -2420,7 +2419,7 @@ msgstr "Avaleht" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Töölaud" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Müük" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Staatus" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Logi sisse" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "Kirjeldus" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Üksikasjad" @@ -4520,11 +4605,11 @@ msgstr "Üksikasjad" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/fa/messages.po b/src/frontend/src/locales/fa/messages.po index d4d66ca934..5d03646139 100644 --- a/src/frontend/src/locales/fa/messages.po +++ b/src/frontend/src/locales/fa/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fa\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Persian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/fi/messages.po b/src/frontend/src/locales/fi/messages.po index 3ccaf21e21..a93fd6bf2a 100644 --- a/src/frontend/src/locales/fi/messages.po +++ b/src/frontend/src/locales/fi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fi\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/fr/messages.po b/src/frontend/src/locales/fr/messages.po index 064cfc3e3c..fe352ac28f 100644 --- a/src/frontend/src/locales/fr/messages.po +++ b/src/frontend/src/locales/fr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fr\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -70,7 +70,7 @@ msgstr "Impression terminée avec succès" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Supprimer l'image associée de cet élément ?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Supprimer" @@ -188,7 +188,6 @@ msgstr "Effacer" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Envoyer" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Il existe des erreurs pour un ou plusieurs champs du formulaire" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Mise à jour" @@ -437,7 +436,7 @@ msgstr "Mise à jour" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Supprimer" @@ -498,6 +497,7 @@ msgstr "Ou continuer avec d'autres méthodes" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Nom d'utilisateur" @@ -608,9 +608,10 @@ msgstr "Serveur" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "Icônes {0}" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Rechercher" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "En Savoir Plus" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Erreur inconnue" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Lien" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Fermer" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Serveur" @@ -1267,7 +1268,7 @@ msgstr "Paramètres du compte" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Les paramètres du système" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Centre Admin" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Pages" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Extensions" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "À propos" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Aucun résultat" msgid "No results available for search query" msgstr "Aucun résultat disponible pour la requête" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Modèle inconnu : {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Modèle inconnu : {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Modèle inconnu : {model}" msgid "Part" msgstr "Pièce" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Composants" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Modèle de paramètre de pièce" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Modèles de paramètres de pièce" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Modèle de test de pièce" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Modèles de test de pièces" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Pièce fournisseur" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Pièces du fournisseur" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Pièces du fabricant" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Pièces du fabricant" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Catégorie de composant" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Catégories de composants" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Article en stock" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Articles en stock" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Emplacement du stock" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Emplacements de stock" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Historique du stock" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Historique du stock" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Construction" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Construction" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Société" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Sociétés" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Société" msgid "Project Code" msgstr "Code du projet" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Codes du projet" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Commande d’achat" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Ordres d'achat" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Ligne de commande d'achat" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Lignes de commande d'achat" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Ventes" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Ordres de vente" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Expédition de la commande" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Expéditions de la commande" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Retour de commande" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Retours" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adresse" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adresses" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Contact" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Contacts" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Propriétaire" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Utilisateur" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Composants" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Modèles de paramètres de pièce" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Modèles de test de pièces" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Pièces du fournisseur" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Pièces du fabricant" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Catégories de composants" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Articles en stock" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Emplacements de stock" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Historique du stock" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Ordres de fabrication" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Sociétés" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Codes du projet" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Ordres d'achat" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Ordres de vente" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Expéditions de la commande" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Retours" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adresses" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Contacts" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Utilisateurs" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Groupes" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inactif" @@ -1795,17 +1802,17 @@ msgstr "Aucun stock" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Stock" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Numéro de série" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Paramètres d'Affichage" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Mode de couleur" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Langue" @@ -2420,7 +2419,7 @@ msgstr "Page d’accueil" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Tableau de bord" @@ -2548,7 +2547,7 @@ msgstr "Actualités en cours" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Site web" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Démo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Construction" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Achat en cours" @@ -2579,9 +2573,9 @@ msgstr "Achat en cours" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Ventes" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Status" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Entrez les numéros de série pour le nouveau stock (ou laisser vide)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,17 +3608,46 @@ msgstr "Pas de scan en cours" msgid "Select Camera" msgstr "Sélectionner la caméra" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Détails du compte" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Prénom" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Nom de famille" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,16 +3658,29 @@ msgstr "Nom de famille" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Prénom:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Nom de famille:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Utiliser une pseudo langue" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "barres" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "ovale" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "points" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Thème" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Couleur Principale" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Utiliser une pseudo langue" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Couleur blanche" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Couleur noire" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Rayon de bordure" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Chargeur" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Tâches en arrière plan" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Rapports d'erreur" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Unités personnalisées" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Paramètres de la pièce" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Actions rapides" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Ajouter un utilisateur" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Options avancées" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Info" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "Les extensions tierces ne sont pas activées pour cette installation d'InvenTree." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "Les extensions tierces ne sont pas activées pour cette installation d'InvenTree." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "Les extensions tierces ne sont pas activées pour cette installation d'I #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Erreurs du plugin" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Paramètres du plug-in" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Erreurs du plugin" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4017,6 +4082,18 @@ msgstr "Tâches en échec" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Ordres de fabrication" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Compte" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Options d’affichage" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Paramètres du compte" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "Responsable" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Date cible" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Révision" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Catégorie" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "Emplacement par défaut" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Unités" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Mots-clés" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "Mots-clés" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "Stock Minimum" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "Sur commande" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "Alloué à l'ordre de construction" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "Alloué aux ordres de ventes" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Peut être construit" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Date de création" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Fournisseur par Défaut" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Échelle des prix" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Dernier inventaire" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Variants" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Allocations" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "Disponible" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Effacer filtres" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Pas d'enregistrement trouvé" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "Le serveur à retourner un type de donnée incorrect" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Requête invalide" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Non autorisé" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Accès interdit" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Elément non trouvé" @@ -5696,18 +5787,14 @@ msgstr "Elément non trouvé" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "Cette action ne peut pas être annulée !" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "Cette action ne peut pas être annulée !" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "Cette action ne peut pas être annulée !" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "Cette action ne peut pas être annulée !" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Actions de code-barres" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Supprimer les enregistrements sélectionnés" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Actualiser les données" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Filtres de tableau" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/he/messages.po b/src/frontend/src/locales/he/messages.po index 59568c0d7c..0fdf7a4bdc 100644 --- a/src/frontend/src/locales/he/messages.po +++ b/src/frontend/src/locales/he/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: he\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/hi/messages.po b/src/frontend/src/locales/hi/messages.po index 8efa5ed8e2..c63b15254b 100644 --- a/src/frontend/src/locales/hi/messages.po +++ b/src/frontend/src/locales/hi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hi\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "उपयोगकर्ता नाम" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "कैमरा चुनें" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/hu/messages.po b/src/frontend/src/locales/hu/messages.po index c19683996f..7e710a9314 100644 --- a/src/frontend/src/locales/hu/messages.po +++ b/src/frontend/src/locales/hu/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hu\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Címke nyomtatás sikeres" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Tételhez rendelt kép eltávolítása?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Eltávolítás" @@ -188,7 +188,6 @@ msgstr "Törlés" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Küldés" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Egy vagy több mező hibát jelez" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Frissítés" @@ -437,7 +436,7 @@ msgstr "Frissítés" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Törlés" @@ -498,6 +497,7 @@ msgstr "Vagy próbáljon más módszert" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Felhasználónév" @@ -608,9 +608,10 @@ msgstr "Kiszolgáló" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "{0} db" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Keresés" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Tudj meg többet" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Ismeretlen hiba" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Link" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Felugró ablak bezárása" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Szerver" @@ -1267,7 +1268,7 @@ msgstr "Fiókbeállítások" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Rendszerbeállítások" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Admin központ" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Oldalak" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Pluginok" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Névjegy" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Nincs találat" msgid "No results available for search query" msgstr "Nincs találat a keresésre" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Ismeretlen model: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Ismeretlen model: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Ismeretlen model: {model}" msgid "Part" msgstr "Alkatrész" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Alkatrészek" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Alkatrész paraméter sablon" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Alkatrész paraméter sablonok" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Beszállítói alkatrész" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Beszállítói alkatrészek" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Gyártói alkatrész" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Gyártói alkatrészek" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Alkatrész kategória" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Alkatrész kategóriák" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Készlet tétel" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Készlet tételek" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Készlet hely" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Készlethelyek" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Készlettörténet" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Készlettörténet" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Gyártás" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Gyártások" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Cég" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Cégek" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Cég" msgid "Project Code" msgstr "Projektszám" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Projektszámok" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Beszerzési rendelés" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Beszerzési rendelések" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Beszerzési rendelés tétel" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Beszerzési rendelés tételei" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Vevői rendelés" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Vevői rendelések" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Vevői rendelés szállítmány" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Vevői rendelés szállítmányok" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Visszavétel" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Visszavételek" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Cím" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Címek" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Kapcsolat" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Kapcsolatok" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Tulajdonos" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Tulajdonosok" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Felhasználó" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Alkatrészek" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Alkatrész paraméter sablonok" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Beszállítói alkatrészek" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Gyártói alkatrészek" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Alkatrész kategóriák" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Készlet tételek" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Készlethelyek" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Készlettörténet" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Gyártási utasítások" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Cégek" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Projektszámok" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Beszerzési rendelések" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Vevői rendelések" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Vevői rendelés szállítmányok" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Visszavételek" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Címek" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Kapcsolatok" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Tulajdonosok" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Felhasználók" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Csoportok" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Szállítmány" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inaktív" @@ -1795,17 +1802,17 @@ msgstr "Nincs készlet" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Készlet" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Sorozatszám" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Megjelenítési beállítások" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Megjelenítési mód" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Nyelv" @@ -2420,7 +2419,7 @@ msgstr "Főoldal" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Irányítópult" @@ -2548,7 +2547,7 @@ msgstr "Jelenlegi hírek" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Weboldal" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demó" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Gyártás" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Beszerzés" @@ -2579,9 +2573,9 @@ msgstr "Beszerzés" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Eladás" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "Sor eltávolítása" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "Tárolás a már megérkezett készlettel" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Állapot" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Add meg az új készlet tételhez tartozó sorozatszámokat (vagy hagyd üresen)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "Mozgatás az alapértelmezett helyre" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Készleten" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Áthelyezés" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Hozzáadás" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Mennyiség" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "Készlet csökkentése" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Készlet áthelyezése" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Leltározás" @@ -3610,17 +3608,46 @@ msgstr "Nincs kódolvasás" msgid "Select Camera" msgstr "Kamera kiválasztása" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Felhasználó adatok" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Keresztnév" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Vezetéknév" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,16 +3658,29 @@ msgstr "Vezetéknév" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Keresztnév:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Vezetéknév:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Használj pszeudo nyelvet" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "oszlopok" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "ovális" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "pontok" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Téma" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Elsődleges szín" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Használj pszeudo nyelvet" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Fehér szín" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Fekete szín" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Szegély sugár" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Betöltő" @@ -3838,19 +3902,19 @@ msgstr "Utoljára betöltve" msgid "Base currency" msgstr "Alapvaluta" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Háttér műveletek" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Hibajelentések" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Pénznemek" @@ -3858,20 +3922,21 @@ msgstr "Pénznemek" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Egyedi mértékegységek" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Alkatrész paraméterek" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Kategória paraméterek" @@ -3879,24 +3944,24 @@ msgstr "Kategória paraméterek" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Berendezések" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Gyors műveletek" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Új felhasználó hozzáadása" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "További beállítások" @@ -3912,19 +3977,19 @@ msgstr "Berendezés hibatároló" msgid "There are no machine registry errors." msgstr "Nincsenek berendezés katalógus hibák." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Infó" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "Külső pluginok nincsenek engedélyezve ebben az InvenTree példányban." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "Külső pluginok nincsenek engedélyezve ebben az InvenTree példányban." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "Külső pluginok nincsenek engedélyezve ebben az InvenTree példányban #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Bővítmény Hibák" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Plugin beállítások" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Bővítmény Hibák" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "Lapméret" @@ -4017,6 +4082,18 @@ msgstr "Hibás feladatok" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Válassza ki a felhasználói életciklusre vonatkozó beállításokat. További információ" @@ -4025,15 +4102,15 @@ msgstr "Válassza ki a felhasználói életciklusre vonatkozó beállításokat. msgid "System settings" msgstr "Rendszerbeállítások" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Bejelentkezés" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Vonalkódok" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Árazás" @@ -4045,41 +4122,49 @@ msgstr "Árazás" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Címkék" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Riportolás" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Leltár" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Gyártási utasítások" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Felhasználói beállításra váltás" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Fiók" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Biztonság" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Megjelenítési beállítások" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Fiókbeállítások" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Rendszer beállításra váltás" @@ -4115,8 +4200,8 @@ msgstr "Megjelölés olvasatlanként" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Megjelölés olvasatlanként" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Hivatkozás" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "Hivatkozás" msgid "Description" msgstr "Leírás" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "Szülő gyártás" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Gyártási mennyiség" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Befejezett kimenetek" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "Felelős" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Cél dátum" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Gyártás részletei" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Sortételek" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Befejezetlen kimenetek" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Felhasznált készlet" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Alárendelt gyártások" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Teszt eredmények" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Mellékletek" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Megjegyzések" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Gyártási utasítás szerkesztése" @@ -4333,126 +4418,126 @@ msgstr "Gyártási utasítás szerkesztése" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Gyártási utasítás létrehozása" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Gyártáshoz foglalások" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "Beszállító" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Gyártó" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "Gyártó" msgid "Customer" msgstr "Vevő" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Részletek" @@ -4520,11 +4605,11 @@ msgstr "Részletek" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Gyártott alkatrészek" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Szállított alkatrészek" @@ -4532,84 +4617,84 @@ msgstr "Szállított alkatrészek" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Hozzárendelt készlet" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Cég szerkesztése" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "Cég műveletek" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Paraméterek" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Beszállítók" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "Csomagolási mennyiség" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Beérkezett készlet" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Beszállítói alkatrész szerkesztése" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Beszállítói alkatrész törlése" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Beszállítói alkatrész hozzáadása" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Elérési út" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Szerkezeti" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Kategória" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Mértékegységek" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "Rendelve" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Gyártható" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "Gyártásban" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Gyártmány alkatrész" @@ -4846,7 +4931,7 @@ msgstr "Gyártmány alkatrész" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Létrehozás dátuma" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Készítette" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Alapértelmezett beszállító" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Ártartomány" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Utolsó leltár" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Leltárazta" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Alkatrész részletei" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Változatok" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Foglalások" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Gyártáshoz foglalások" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Vevői rendeléshez foglalások" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Alkatrészjegyzék" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Felhasználva ebben" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Alkatrész árak" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Gyártók" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Ütemezés" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Teszt sablonok" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Kapcsolódó alkatrészek" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "Kapcsolódó alkatrészek" msgid "Available" msgstr "Elérhető" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "Nincs készlet" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "Rendelve" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Alkatrész szerkesztése" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "Alkatrész hozzáadása" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Készlet műveletek" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Készlet számolása" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Készlet áthelyezése" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Alkatrész műveletek" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "Általános árazás" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "Legutóbb frissítve" @@ -5242,23 +5327,23 @@ msgstr "Beszállítói ár" msgid "Variant Part" msgstr "Alkatrészváltozat" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "Beszerzési rendelés szerkesztése" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "Beszerzés hozzáadása" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "Beszállítói azonosító" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "Kész sortételek" @@ -5268,91 +5353,91 @@ msgstr "Kész sortételek" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "Teljes költség" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "Létrehozva" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Rendelés részletei" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Rendelés műveletek" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Vevői azonosító" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "Vevők" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Kész szállítmányok" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Kiindulási alkatrész" @@ -5475,11 +5560,11 @@ msgstr "Kiindulási alkatrész" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Készlettörténet" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Teszt adatok" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Beépített tételek" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Gyermek tételek" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Készlet tétel szerkesztése" @@ -5519,38 +5610,38 @@ msgstr "Készlet tétel szerkesztése" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Készlet műveletek" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Leltározás" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Készlethez ad" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Készlet csökkentése" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Áthelyezés" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Készlet áthelyezése" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Nincs találat" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "A szerver hibás adattípust küldött vissza" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Hibás kérés" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Jogosulatlan" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Tiltott" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Nem található" @@ -5696,18 +5787,14 @@ msgstr "Nem található" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Vonalkód műveletek" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Adatok frissítése" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Táblaszűrők" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Beépített" @@ -7137,7 +7228,7 @@ msgstr "Plugin aktiválása" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Kikapcsolás" @@ -7145,7 +7236,7 @@ msgstr "Kikapcsolás" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Bekapcsolás" @@ -7173,75 +7264,75 @@ msgstr "Bekapcsolás" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "Eltávolítás" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "Plugin telepítése" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "Telepítés" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "A bővítmény sikeresen telepítve" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "Bővítmény eltávolítása" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "Bővítmény eltávolítás megerősítése" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "A kiválasztott bővítmény el lesz távolítva." -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "Ez a művelet nem vonható vissza." -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "A bővítmény sikeresen eltávolítva" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "Plugin törlése" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "A bővítmény konfiguráció törlése eltávolít minden beállítást és adatot. Biztos benne, hogy törölni akarja ezt a bővítményt?" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "Bővítmények újratöltve" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "Bővítmények újratöltése sikeres" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "Bővítmények újratöltése" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "Bővítmény telepítése" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "Bővítmény részletek" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Minta" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Telepítve" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/id/messages.po b/src/frontend/src/locales/id/messages.po index 8c9a0d598c..1cbd7668b6 100644 --- a/src/frontend/src/locales/id/messages.po +++ b/src/frontend/src/locales/id/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: id\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Tautan" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "Pengaturan Akun" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Pengaturan Sistem" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Halaman" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Tentang" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Model Tidak diketahui: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Model Tidak diketahui: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Model Tidak diketahui: {model}" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Alamat" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Kontak" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Kontak" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Pemilik" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Kontak" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Tidak Aktif" @@ -1795,17 +1802,17 @@ msgstr "Tidak ada persediaan" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Persediaan" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Nomor Seri" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Pengaturan Tampilan" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "Beranda" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Penjualan" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "Tambah Catatan" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Tambah" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/it/messages.po b/src/frontend/src/locales/it/messages.po index 28a3d3d61e..166a2e1d5a 100644 --- a/src/frontend/src/locales/it/messages.po +++ b/src/frontend/src/locales/it/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: it\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Stampa dell'etichetta completata con successo" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -126,7 +126,7 @@ msgstr "Accendi torcia" #: src/components/buttons/YesNoButton.tsx:16 msgid "Pass" -msgstr "" +msgstr "Salta / Ignora" #: src/components/buttons/YesNoButton.tsx:17 msgid "Fail" @@ -158,7 +158,7 @@ msgstr "Rimuovi l'immagine associata all'articolo?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Rimuovi" @@ -188,7 +188,6 @@ msgstr "Elimina" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Invia" @@ -282,7 +281,7 @@ msgstr "" #: src/components/editors/NotesEditor.tsx:212 msgid "Save Notes" -msgstr "" +msgstr "Salva note" #: src/components/editors/TemplateEditor/CodeEditor/index.tsx:9 msgid "Code" @@ -306,16 +305,16 @@ msgstr "Errore durante il caricamento del modello" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:116 msgid "Error saving template" -msgstr "" +msgstr "Errore durante il salvataggio del modello" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:146 #: src/components/editors/TemplateEditor/TemplateEditor.tsx:274 msgid "Save & Reload Preview" -msgstr "" +msgstr "Salva & ricarica l'anteprima" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:151 msgid "Are you sure you want to Save & Reload the preview?" -msgstr "" +msgstr "Sei sicuro di voler salvare e ricaricare l'anteprima?" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:151 #~ msgid "Save & Reload preview?" @@ -323,19 +322,19 @@ msgstr "" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:153 msgid "To render the preview the current template needs to be replaced on the server with your modifications which may break the label if it is under active use. Do you want to proceed?" -msgstr "" +msgstr "Per visualizzare l'anteprima, il modello attuale deve essere sostituito sul server con le modifiche apportate, il che potrebbe interrompere l'etichetta se è in uso attivo. Volete procedere?" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:157 msgid "Save & Reload" -msgstr "" +msgstr "Salva & ricarica" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:189 msgid "Preview updated" -msgstr "" +msgstr "Anteprima aggiornata" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:190 msgid "The preview has been updated successfully." -msgstr "" +msgstr "L' anteprima è stata aggiornata con successo." #: src/components/editors/TemplateEditor/TemplateEditor.tsx:263 #~ msgid "Save & Reload preview" @@ -343,15 +342,15 @@ msgstr "" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:266 msgid "Reload preview" -msgstr "" +msgstr "Ricarica anteprima" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:267 msgid "Use the currently stored template from the server" -msgstr "" +msgstr "Utilizzare il modello attualmente memorizzato dal server" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:275 msgid "Save the current template and reload the preview" -msgstr "" +msgstr "Salva il modello corrente e ricarica l'anteprima" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:322 #~ msgid "to preview" @@ -359,64 +358,64 @@ msgstr "" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:333 msgid "Select instance to preview" -msgstr "" +msgstr "Selezionare l'istanza da visualizzare in anteprima" #: src/components/editors/TemplateEditor/TemplateEditor.tsx:377 msgid "Error rendering template" -msgstr "" +msgstr "Errore nel visualizzare il modello" #: src/components/errors/ClientError.tsx:23 msgid "Client Error" -msgstr "" +msgstr "Errore Client" #: src/components/errors/ClientError.tsx:24 msgid "Client error occurred" -msgstr "" +msgstr "Si è verificato un errore del client" #: src/components/errors/GenericErrorPage.tsx:50 msgid "Status Code" -msgstr "" +msgstr "Codici di stato" #: src/components/errors/GenericErrorPage.tsx:63 msgid "Return to the index page" -msgstr "" +msgstr "Ritorno alla pagina dell'indice" #: src/components/errors/NotAuthenticated.tsx:8 msgid "Not Authenticated" -msgstr "" +msgstr "Non autenticato" #: src/components/errors/NotAuthenticated.tsx:9 msgid "You are not logged in." -msgstr "" +msgstr "Non hai effettuato l'accesso." #: src/components/errors/NotFound.tsx:8 msgid "Page Not Found" -msgstr "" +msgstr "Pagina Non Trovata" #: src/components/errors/NotFound.tsx:9 msgid "This page does not exist" -msgstr "" +msgstr "Questa pagina non esiste" #: src/components/errors/PermissionDenied.tsx:8 msgid "Permission Denied" -msgstr "" +msgstr "Permesso negato" #: src/components/errors/PermissionDenied.tsx:9 msgid "You do not have permission to view this page." -msgstr "" +msgstr "Non ha i permessi per visualizzare questa pagina." #: src/components/errors/ServerError.tsx:8 msgid "Server Error" -msgstr "" +msgstr "Errore del server" #: src/components/errors/ServerError.tsx:9 msgid "A server error occurred" -msgstr "" +msgstr "Si è verificato un errore del server" #: src/components/forms/ApiForm.tsx:151 #: src/components/forms/ApiForm.tsx:568 msgid "Form Error" -msgstr "" +msgstr "Errore Modulo" #: src/components/forms/ApiForm.tsx:487 #~ msgid "Form Errors Exist" @@ -424,12 +423,12 @@ msgstr "" #: src/components/forms/ApiForm.tsx:576 msgid "Errors exist for one or more form fields" -msgstr "" +msgstr "Esistono errori per uno o più campi del modulo" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" -msgstr "" +msgstr "Aggiorna" #: src/components/forms/ApiForm.tsx:698 #: src/components/items/ActionDropdown.tsx:250 @@ -437,9 +436,9 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" -msgstr "" +msgstr "Elimina" #: src/components/forms/AuthenticationForm.tsx:48 #: src/components/forms/AuthenticationForm.tsx:74 @@ -449,11 +448,11 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:51 msgid "Login successful" -msgstr "" +msgstr "Accesso riuscito" #: src/components/forms/AuthenticationForm.tsx:52 msgid "Logged in successfully" -msgstr "" +msgstr "Accesso effettuato con successo" #: src/components/forms/AuthenticationForm.tsx:52 #~ msgid "Welcome back!" @@ -465,14 +464,14 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:58 msgid "Login failed" -msgstr "" +msgstr "Accesso non riuscito" #: src/components/forms/AuthenticationForm.tsx:59 #: src/components/forms/AuthenticationForm.tsx:76 #: src/components/forms/AuthenticationForm.tsx:211 #: src/functions/auth.tsx:164 msgid "Check your input and try again." -msgstr "" +msgstr "Controllare i dati inseriti e riprovare." #: src/components/forms/AuthenticationForm.tsx:65 #: src/functions/auth.tsx:74 @@ -482,45 +481,46 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:70 #: src/functions/auth.tsx:155 msgid "Mail delivery successful" -msgstr "" +msgstr "Spedizione email riuscita" #: src/components/forms/AuthenticationForm.tsx:71 msgid "Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too." -msgstr "" +msgstr "Controlla la tua casella di posta per il link di accesso. Se hai un account, riceverai un link di accesso. Controlla anche lo spam." #: src/components/forms/AuthenticationForm.tsx:75 msgid "Mail delivery failed" -msgstr "" +msgstr "Invio della posta non riuscito" #: src/components/forms/AuthenticationForm.tsx:95 msgid "Or continue with other methods" -msgstr "" +msgstr "Oppure proseguire con altri metodi" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" -msgstr "" +msgstr "Nome utente" #: src/components/forms/AuthenticationForm.tsx:107 #: src/components/forms/AuthenticationForm.tsx:228 msgid "Your username" -msgstr "" +msgstr "Il tuo nome utente" #: src/components/forms/AuthenticationForm.tsx:112 #: src/components/forms/AuthenticationForm.tsx:240 #: src/pages/Auth/Set-Password.tsx:106 msgid "Password" -msgstr "" +msgstr "Password" #: src/components/forms/AuthenticationForm.tsx:113 #: src/components/forms/AuthenticationForm.tsx:241 msgid "Your password" -msgstr "" +msgstr "La tua password" #: src/components/forms/AuthenticationForm.tsx:125 #: src/pages/Auth/Reset.tsx:26 msgid "Reset password" -msgstr "" +msgstr "Reimposta password" #: src/components/forms/AuthenticationForm.tsx:131 #~ msgid "Log in" @@ -531,13 +531,13 @@ msgstr "" #: src/pages/Auth/Reset.tsx:31 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:51 msgid "Email" -msgstr "" +msgstr "Email" #: src/components/forms/AuthenticationForm.tsx:135 #: src/pages/Auth/Reset.tsx:32 #: src/pages/Auth/Set-Password.tsx:107 msgid "We will send you a link to login - if you are registered" -msgstr "" +msgstr "Ti invieremo un link per accedere - se sei registrato" #: src/components/forms/AuthenticationForm.tsx:136 #~ msgid "I will use username and password" @@ -545,72 +545,73 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:151 msgid "Send me an email" -msgstr "" +msgstr "Inviami una email" #: src/components/forms/AuthenticationForm.tsx:153 msgid "Use username and password" -msgstr "" +msgstr "Usa nome utente e password" #: src/components/forms/AuthenticationForm.tsx:162 msgid "Log In" -msgstr "" +msgstr "Accedi" #: src/components/forms/AuthenticationForm.tsx:164 msgid "Send Email" -msgstr "" +msgstr "Invia email" #: src/components/forms/AuthenticationForm.tsx:193 msgid "Registration successful" -msgstr "" +msgstr "Registrazione completata con successo" #: src/components/forms/AuthenticationForm.tsx:194 msgid "Please confirm your email address to complete the registration" -msgstr "" +msgstr "Per favore conferma il tuo indirizzo email per completare la registrazione" #: src/components/forms/AuthenticationForm.tsx:210 msgid "Input error" -msgstr "" +msgstr "Errore d'inserimento dati" #: src/components/forms/AuthenticationForm.tsx:234 msgid "This will be used for a confirmation" -msgstr "" +msgstr "Questo verrà utilizzato per una conferma" #: src/components/forms/AuthenticationForm.tsx:246 msgid "Password repeat" -msgstr "" +msgstr "Ripeti password" #: src/components/forms/AuthenticationForm.tsx:247 msgid "Repeat password" -msgstr "" +msgstr "Ripeti password" #: src/components/forms/AuthenticationForm.tsx:259 #: src/components/forms/AuthenticationForm.tsx:304 msgid "Register" -msgstr "" +msgstr "Registrati" #: src/components/forms/AuthenticationForm.tsx:265 msgid "Or use SSO" -msgstr "" +msgstr "Oppure usa SSO" #: src/components/forms/AuthenticationForm.tsx:296 msgid "Don't have an account?" -msgstr "" +msgstr "Non hai un account?" #: src/components/forms/AuthenticationForm.tsx:315 msgid "Go back to login" -msgstr "" +msgstr "Torna alla pagina di accesso" #: src/components/forms/HostOptionsForm.tsx:36 #: src/components/forms/HostOptionsForm.tsx:67 msgid "Host" -msgstr "" +msgstr "Host" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -622,94 +623,94 @@ msgstr "" #: src/tables/settings/PendingTasksTable.tsx:28 #: src/tables/stock/LocationTypesTable.tsx:69 msgid "Name" -msgstr "" +msgstr "Nome" #: src/components/forms/HostOptionsForm.tsx:75 msgid "No one here..." -msgstr "" +msgstr "Non c'è nessuno qui..." #: src/components/forms/HostOptionsForm.tsx:86 msgid "Add Host" -msgstr "" +msgstr "Aggiungi Host" #: src/components/forms/HostOptionsForm.tsx:90 msgid "Save" -msgstr "" +msgstr "Salva" #: src/components/forms/InstanceOptions.tsx:43 msgid "Select destination instance" -msgstr "" +msgstr "Selezionare l'istanza di destinazione" #: src/components/forms/InstanceOptions.tsx:71 msgid "Edit possible host options" -msgstr "" +msgstr "Modifica delle opzioni di host possibili" #: src/components/forms/InstanceOptions.tsx:98 msgid "Version: {0}" -msgstr "" +msgstr "Versione: {0}" #: src/components/forms/InstanceOptions.tsx:100 msgid "API:{0}" -msgstr "" +msgstr "API:{0}" #: src/components/forms/InstanceOptions.tsx:102 msgid "Name: {0}" -msgstr "" +msgstr "Nome: {0}" #: src/components/forms/InstanceOptions.tsx:104 msgid "State: <0>worker ({0}), <1>plugins{1}" -msgstr "" +msgstr "Stato: <0>worker ({0}), <1>plugins{1}" #: src/components/forms/fields/IconField.tsx:81 msgid "No icon selected" -msgstr "" +msgstr "Nessuna icona selezionata" #: src/components/forms/fields/IconField.tsx:159 msgid "Uncategorized" -msgstr "" +msgstr "Non categorizzato" #: src/components/forms/fields/IconField.tsx:209 #: src/components/nav/Layout.tsx:70 #: src/tables/part/PartThumbTable.tsx:192 msgid "Search..." -msgstr "" +msgstr "Ricerca..." #: src/components/forms/fields/IconField.tsx:223 msgid "Select category" -msgstr "" +msgstr "Seleziona categoria" #: src/components/forms/fields/IconField.tsx:232 msgid "Select pack" -msgstr "" +msgstr "Seleziona la confezione" #: src/components/forms/fields/IconField.tsx:237 msgid "{0} icons" -msgstr "" +msgstr "{0} icone" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" -msgstr "" +msgstr "Ricerca" #: src/components/forms/fields/RelatedModelField.tsx:319 #: src/components/modals/AboutInvenTreeModal.tsx:81 #: src/components/widgets/WidgetLayout.tsx:120 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 msgid "Loading" -msgstr "" +msgstr "Caricamento" #: src/components/forms/fields/RelatedModelField.tsx:321 msgid "No results found" -msgstr "" +msgstr "Nessun risultato trovato" #: src/components/forms/fields/TableField.tsx:72 msgid "modelRenderer entry required for tables" -msgstr "" +msgstr "Voce ModelRenderer necessaria per le tabelle" #: src/components/forms/fields/TableField.tsx:99 msgid "No entries available" -msgstr "" +msgstr "Nessuna voce disponibile" #: src/components/images/DetailsImage.tsx:252 #~ msgid "Select image" @@ -717,73 +718,73 @@ msgstr "" #: src/components/images/Thumbnail.tsx:12 msgid "Thumbnail" -msgstr "" +msgstr "Miniatura" #: src/components/importer/ImportDataSelector.tsx:170 msgid "Importing Rows" -msgstr "" +msgstr "Importa Righe" #: src/components/importer/ImportDataSelector.tsx:171 msgid "Please wait while the data is imported" -msgstr "" +msgstr "Si prega di attendere mentre i dati vengono importati" #: src/components/importer/ImportDataSelector.tsx:188 msgid "An error occurred while importing data" -msgstr "" +msgstr "Si è verificato un errore durante l'importazione dei dati" #: src/components/importer/ImportDataSelector.tsx:209 msgid "Edit Data" -msgstr "" +msgstr "Modifica dati" #: src/components/importer/ImportDataSelector.tsx:237 msgid "Delete Row" -msgstr "" +msgstr "Elimina riga" #: src/components/importer/ImportDataSelector.tsx:267 msgid "Row" -msgstr "" +msgstr "Riga" #: src/components/importer/ImportDataSelector.tsx:285 msgid "Row contains errors" -msgstr "" +msgstr "La riga contiene errori" #: src/components/importer/ImportDataSelector.tsx:326 msgid "Accept" -msgstr "" +msgstr "Accetta" #: src/components/importer/ImportDataSelector.tsx:359 msgid "Valid" -msgstr "" +msgstr "Valido" #: src/components/importer/ImportDataSelector.tsx:360 msgid "Filter by row validation status" -msgstr "" +msgstr "Filtra per stato di convalida della riga" #: src/components/importer/ImportDataSelector.tsx:365 #: src/tables/build/BuildOutputTable.tsx:266 msgid "Complete" -msgstr "" +msgstr "Completato" #: src/components/importer/ImportDataSelector.tsx:366 msgid "Filter by row completion status" -msgstr "" +msgstr "Filtra per stato completamento riga" #: src/components/importer/ImportDataSelector.tsx:383 msgid "Import selected rows" -msgstr "" +msgstr "Importa righe selezionate" #: src/components/importer/ImportDataSelector.tsx:398 msgid "Processing Data" -msgstr "" +msgstr "Elaborazione dati" #: src/components/importer/ImporterColumnSelector.tsx:50 #: src/components/importer/ImporterColumnSelector.tsx:176 msgid "An error occurred" -msgstr "" +msgstr "Si è verificato un errore" #: src/components/importer/ImporterColumnSelector.tsx:62 msgid "Select column, or leave blank to ignore this field." -msgstr "" +msgstr "Seleziona la colonna o lascia vuoto per ignorare questo campo." #: src/components/importer/ImporterColumnSelector.tsx:91 #~ msgid "Select a column from the data file" @@ -799,51 +800,51 @@ msgstr "" #: src/components/importer/ImporterColumnSelector.tsx:182 msgid "Ignore this field" -msgstr "" +msgstr "Ignora questo campo" #: src/components/importer/ImporterColumnSelector.tsx:196 msgid "Mapping data columns to database fields" -msgstr "" +msgstr "Mappatura colonne di dati ai campi del database" #: src/components/importer/ImporterColumnSelector.tsx:201 msgid "Accept Column Mapping" -msgstr "" +msgstr "Accetta Mappatura Colonna" #: src/components/importer/ImporterColumnSelector.tsx:214 msgid "Database Field" -msgstr "" +msgstr "Campo Database" #: src/components/importer/ImporterColumnSelector.tsx:215 msgid "Field Description" -msgstr "" +msgstr "Campo descrizione" #: src/components/importer/ImporterColumnSelector.tsx:216 msgid "Imported Column" -msgstr "" +msgstr "Colonna Importata" #: src/components/importer/ImporterColumnSelector.tsx:217 msgid "Default Value" -msgstr "" +msgstr "Valore Predefinito" #: src/components/importer/ImporterDrawer.tsx:44 msgid "Upload File" -msgstr "" +msgstr "Carica file" #: src/components/importer/ImporterDrawer.tsx:45 msgid "Map Columns" -msgstr "" +msgstr "Mappa colonne" #: src/components/importer/ImporterDrawer.tsx:46 msgid "Import Data" -msgstr "" +msgstr "Importa dati" #: src/components/importer/ImporterDrawer.tsx:47 msgid "Process Data" -msgstr "" +msgstr "Elaborazione dati" #: src/components/importer/ImporterDrawer.tsx:48 msgid "Complete Import" -msgstr "" +msgstr "Importazione Completata" #: src/components/importer/ImporterDrawer.tsx:97 #~ msgid "Cancel import session" @@ -851,36 +852,36 @@ msgstr "" #: src/components/importer/ImporterDrawer.tsx:104 msgid "Import Complete" -msgstr "" +msgstr "Importazione Completata" #: src/components/importer/ImporterDrawer.tsx:107 msgid "Data has been imported successfully" -msgstr "" +msgstr "I dati sono stati importati correttamente" #: src/components/importer/ImporterDrawer.tsx:109 #: src/components/importer/ImporterDrawer.tsx:118 msgid "Close" -msgstr "" +msgstr "Chiudi" #: src/components/importer/ImporterDrawer.tsx:115 msgid "Unknown Status" -msgstr "" +msgstr "Stato sconosciuto" #: src/components/importer/ImporterDrawer.tsx:116 msgid "Import session has unknown status" -msgstr "" +msgstr "La sessione d'importazione ha uno stato sconosciuto" #: src/components/importer/ImporterDrawer.tsx:135 msgid "Importing Data" -msgstr "" +msgstr "Importazione dei dati" #: src/components/importer/ImporterImportProgress.tsx:36 msgid "Importing Records" -msgstr "" +msgstr "Importazione Record" #: src/components/importer/ImporterImportProgress.tsx:39 msgid "Imported rows" -msgstr "" +msgstr "Riga importate" #: src/components/items/ActionDropdown.tsx:128 msgid "Options" @@ -896,68 +897,68 @@ msgstr "" #: src/components/items/ActionDropdown.tsx:164 msgid "Barcode Actions" -msgstr "" +msgstr "Azioni Codice A Barre" #: src/components/items/ActionDropdown.tsx:169 msgid "View" -msgstr "" +msgstr "Vista" #: src/components/items/ActionDropdown.tsx:171 msgid "View barcode" -msgstr "" +msgstr "Visualizza codice a barre" #: src/components/items/ActionDropdown.tsx:177 msgid "Link Barcode" -msgstr "" +msgstr "Collega Codice a Barre" #: src/components/items/ActionDropdown.tsx:179 msgid "Link a custom barcode to this item" -msgstr "" +msgstr "Collega un codice a barre personalizzato a questo articolo" #: src/components/items/ActionDropdown.tsx:185 #: src/components/items/QRCode.tsx:195 #: src/forms/PurchaseOrderForms.tsx:419 msgid "Unlink Barcode" -msgstr "" +msgstr "Scollega Codice a Barre" #: src/components/items/ActionDropdown.tsx:187 msgid "Unlink custom barcode" -msgstr "" +msgstr "Scollega codice a barre personalizzato" #: src/components/items/ActionDropdown.tsx:238 #: src/tables/RowActions.tsx:33 msgid "Edit" -msgstr "" +msgstr "Modifica" #: src/components/items/ActionDropdown.tsx:239 msgid "Edit item" -msgstr "" +msgstr "Modifica articolo" #: src/components/items/ActionDropdown.tsx:251 msgid "Delete item" -msgstr "" +msgstr "Elimina articolo" #: src/components/items/ActionDropdown.tsx:259 #: src/components/items/ActionDropdown.tsx:260 msgid "Hold" -msgstr "" +msgstr "Trattenuto" #: src/components/items/ActionDropdown.tsx:282 #: src/tables/RowActions.tsx:23 msgid "Duplicate" -msgstr "" +msgstr "Duplica" #: src/components/items/ActionDropdown.tsx:283 msgid "Duplicate item" -msgstr "" +msgstr "Duplica articolo" #: src/components/items/BarcodeInput.tsx:23 msgid "Scan barcode data here using barcode scanner" -msgstr "" +msgstr "Scansiona qui i dati del codice a barre utilizzando lo scanner di codici a barre" #: src/components/items/BarcodeInput.tsx:24 msgid "Barcode" -msgstr "" +msgstr "Codice a barre" #: src/components/items/BarcodeInput.tsx:25 msgid "Scan" @@ -965,61 +966,61 @@ msgstr "" #: src/components/items/DocTooltip.tsx:92 msgid "Read More" -msgstr "" +msgstr "Approfondisci" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" -msgstr "" +msgstr "Errore sconosciuto" #: src/components/items/ErrorItem.tsx:10 msgid "An error occurred:" -msgstr "" +msgstr "Si è verificato un errore:" #: src/components/items/GettingStartedCarousel.tsx:27 msgid "Read more" -msgstr "" +msgstr "Continua a leggere" #: src/components/items/InfoItem.tsx:27 msgid "None" -msgstr "" +msgstr "Vuoto" #: src/components/items/InvenTreeLogo.tsx:23 msgid "InvenTree Logo" -msgstr "" +msgstr "Logo InvenTree" #: src/components/items/OnlyStaff.tsx:9 #: src/components/modals/AboutInvenTreeModal.tsx:44 msgid "This information is only available for staff users" -msgstr "" +msgstr "Questa informazione è disponibile solo per gli utenti del personale" #: 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." -msgstr "" +msgstr "Questa funzione/pulsante/sito è un segnaposto per una funzione che non è implementata, solo parziale o destinata al test." #: src/components/items/Placeholder.tsx:17 msgid "PLH" -msgstr "" +msgstr "PLH" #: src/components/items/Placeholder.tsx:31 msgid "This panel is a placeholder." -msgstr "" +msgstr "Questo pannello è un segnaposto." #: src/components/items/QRCode.tsx:90 msgid "Low (7%)" -msgstr "" +msgstr "Basso (7%)" #: src/components/items/QRCode.tsx:91 msgid "Medium (15%)" -msgstr "" +msgstr "Medio (15%)" #: src/components/items/QRCode.tsx:92 msgid "Quartile (25%)" -msgstr "" +msgstr "Quartile (25%)" #: src/components/items/QRCode.tsx:93 msgid "High (30%)" -msgstr "" +msgstr "Alto (30%)" #: src/components/items/QRCode.tsx:101 msgid "Custom barcode" @@ -1027,133 +1028,133 @@ msgstr "" #: src/components/items/QRCode.tsx:102 msgid "A custom barcode is registered for this item. The shown code is not that custom barcode." -msgstr "" +msgstr "Per questo articolo è registrato un codice a barre personalizzato. Il codice visualizzato non è quello personalizzato." #: src/components/items/QRCode.tsx:119 msgid "Barcode Data:" -msgstr "" +msgstr "Dati codice a barre:" #: src/components/items/QRCode.tsx:130 msgid "Select Error Correction Level" -msgstr "" +msgstr "Seleziona Livello Correzione Errori" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" -msgstr "" +msgstr "Collegamento" #: src/components/items/QRCode.tsx:192 msgid "This will remove the link to the associated barcode" -msgstr "" +msgstr "Questo rimuoverà il collegamento al codice a barre associato" #: src/components/modals/AboutInvenTreeModal.tsx:99 msgid "Version Information" -msgstr "" +msgstr "Informazioni sulla versione" #: src/components/modals/AboutInvenTreeModal.tsx:103 msgid "Your InvenTree version status is" -msgstr "" +msgstr "Lo stato della tua versione InvenTree è" #: src/components/modals/AboutInvenTreeModal.tsx:107 msgid "Development Version" -msgstr "" +msgstr "Versione di sviluppo" #: src/components/modals/AboutInvenTreeModal.tsx:111 msgid "Up to Date" -msgstr "" +msgstr "Aggiornato" #: src/components/modals/AboutInvenTreeModal.tsx:115 msgid "Update Available" -msgstr "" +msgstr "Aggiornamento disponibile" #: src/components/modals/AboutInvenTreeModal.tsx:125 msgid "InvenTree Version" -msgstr "" +msgstr "Versione di InvenTree" #: src/components/modals/AboutInvenTreeModal.tsx:131 msgid "Commit Hash" -msgstr "" +msgstr "Hash del Commit" #: src/components/modals/AboutInvenTreeModal.tsx:136 msgid "Commit Date" -msgstr "" +msgstr "Data del Commit" #: src/components/modals/AboutInvenTreeModal.tsx:141 msgid "Commit Branch" -msgstr "" +msgstr "Branch del commit" #: src/components/modals/AboutInvenTreeModal.tsx:146 #: src/components/modals/ServerInfoModal.tsx:133 msgid "API Version" -msgstr "" +msgstr "Versione API" #: src/components/modals/AboutInvenTreeModal.tsx:149 msgid "Python Version" -msgstr "" +msgstr "Versione Python" #: src/components/modals/AboutInvenTreeModal.tsx:152 msgid "Django Version" -msgstr "" +msgstr "Versione Django" #: src/components/modals/AboutInvenTreeModal.tsx:162 msgid "Links" -msgstr "" +msgstr "Collegamenti" #: src/components/modals/AboutInvenTreeModal.tsx:168 msgid "InvenTree Documentation" -msgstr "" +msgstr "Documentazione InvenTree" #: src/components/modals/AboutInvenTreeModal.tsx:169 msgid "View Code on GitHub" -msgstr "" +msgstr "Visualizza codice sorgente su GitHub" #: src/components/modals/AboutInvenTreeModal.tsx:170 msgid "Credits" -msgstr "" +msgstr "Riconoscimenti" #: src/components/modals/AboutInvenTreeModal.tsx:171 msgid "Mobile App" -msgstr "" +msgstr "App Mobile" #: src/components/modals/AboutInvenTreeModal.tsx:172 msgid "Submit Bug Report" -msgstr "" +msgstr "Invia Segnalazione Bug" #: src/components/modals/AboutInvenTreeModal.tsx:183 msgid "Copy version information" -msgstr "" +msgstr "Copia informazioni versione" #: src/components/modals/AboutInvenTreeModal.tsx:192 #: src/components/modals/ServerInfoModal.tsx:147 msgid "Dismiss" -msgstr "" +msgstr "Chiudi" #: src/components/modals/LicenseModal.tsx:39 msgid "No license text available" -msgstr "" +msgstr "Nessun testo di licenza disponibile" #: src/components/modals/LicenseModal.tsx:46 msgid "No Information provided - this is likely a server issue" -msgstr "" +msgstr "Nessuna informazione fornita - questo è probabilmente un problema del server" #: src/components/modals/LicenseModal.tsx:71 msgid "Loading license information" -msgstr "" +msgstr "Caricamento delle informazioni sulla licenza" #: src/components/modals/LicenseModal.tsx:77 msgid "Failed to fetch license information" -msgstr "" +msgstr "Recupero delle informazioni sulla licenza non riuscito" #: src/components/modals/LicenseModal.tsx:85 msgid "{key} Packages" -msgstr "" +msgstr "{key} Pacchetti" #: src/components/modals/QrCodeModal.tsx:24 msgid "Unknown response" -msgstr "" +msgstr "Risposta sconosciuta" #: src/components/modals/QrCodeModal.tsx:39 msgid "No scans yet!" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1380,41 +1381,45 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:400 msgid "Regex search" -msgstr "" +msgstr "Ricerca con regex" #: src/components/nav/SearchDrawer.tsx:410 msgid "Whole word search" -msgstr "" +msgstr "Ricerca parole intere" #: src/components/nav/SearchDrawer.tsx:451 msgid "An error occurred during search query" -msgstr "" +msgstr "Si è verificato un errore durante la ricerca" #: src/components/nav/SearchDrawer.tsx:462 msgid "No results" -msgstr "" +msgstr "Nessun risultato" #: src/components/nav/SearchDrawer.tsx:465 msgid "No results available for search query" +msgstr "Nessun risultato disponibile per la ricerca" + +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" msgstr "" #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" -msgstr "" +msgstr "Modello sconosciuto: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1436,343 +1441,345 @@ msgstr "" #: src/tables/sales/SalesOrderAllocationTable.tsx:68 #: src/tables/stock/StockTrackingTable.tsx:74 msgid "Part" -msgstr "" +msgstr "Articolo" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Articoli" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" -msgstr "" +msgstr "Modello parametro articolo" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Modelli parametro articolo" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" -msgstr "" +msgstr "Modello Test Articolo" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Modelli Test Articolo" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" -msgstr "" +msgstr "Articolo Fornitore" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Articoli fornitore" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" -msgstr "" +msgstr "Articolo Produttore" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Articoli Produttore" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" -msgstr "" +msgstr "Categoria Articolo" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Categorie Articolo" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" -msgstr "" +msgstr "Articolo in magazzino" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Articoli in magazzino" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" -msgstr "" +msgstr "Ubicazione articolo" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Ubicazioni articolo" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" -msgstr "" +msgstr "Tipo ubicazione articolo" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Tipi ubicazione articolo" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" -msgstr "" +msgstr "Cronologia Magazzino" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Cronologie Magazzino" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Produzione" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Produzione" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" -msgstr "" +msgstr "Linea di produzione" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "Linee di produzione" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" -msgstr "" +msgstr "Costruisci articolo" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "Costruisci articoli" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" -msgstr "" +msgstr "Azienda" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Aziende" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 #: src/tables/sales/ReturnOrderTable.tsx:55 #: src/tables/sales/SalesOrderTable.tsx:62 msgid "Project Code" -msgstr "" +msgstr "Codice del progetto" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Codici del progetto" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" -msgstr "" +msgstr "Ordine d'acquisto" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Ordini d'acquisto" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Riga ordine di acquisto" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Righe ordine di acquisto" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" -msgstr "" +msgstr "Ordine di Vendita" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Ordini di Vendita" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" -msgstr "" +msgstr "Spedizione dell'ordine di vendita" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Spedizioni dell'ordine di vendita" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" -msgstr "" +msgstr "Ordine di reso" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Ordini di reso" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" -msgstr "" +msgstr "Articolo Linea Ordine Reso" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "Articoli Linea Ordine Reso" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" -msgstr "" +msgstr "Indirizzo" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Indirizzi" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2300,216 +2299,216 @@ msgstr "" #: src/contexts/LanguageContext.tsx:28 msgid "Spanish (Mexican)" -msgstr "" +msgstr "Spagnolo (Messicano)" #: src/contexts/LanguageContext.tsx:29 msgid "Estonian" -msgstr "" +msgstr "Estone" #: src/contexts/LanguageContext.tsx:30 msgid "Farsi / Persian" -msgstr "" +msgstr "Farsi / Persiano" #: src/contexts/LanguageContext.tsx:31 msgid "Finnish" -msgstr "" +msgstr "Finlandese" #: src/contexts/LanguageContext.tsx:32 msgid "French" -msgstr "" +msgstr "Francese" #: src/contexts/LanguageContext.tsx:33 msgid "Hebrew" -msgstr "" +msgstr "Ebraico" #: src/contexts/LanguageContext.tsx:34 msgid "Hindi" -msgstr "" +msgstr "Hindi" #: src/contexts/LanguageContext.tsx:35 msgid "Hungarian" -msgstr "" +msgstr "Ungherese" #: src/contexts/LanguageContext.tsx:36 msgid "Italian" -msgstr "" +msgstr "Italiano" #: src/contexts/LanguageContext.tsx:37 msgid "Japanese" -msgstr "" +msgstr "Giapponese" #: src/contexts/LanguageContext.tsx:38 msgid "Korean" -msgstr "" +msgstr "Coreano" #: src/contexts/LanguageContext.tsx:39 msgid "Latvian" -msgstr "" +msgstr "Lettone" #: src/contexts/LanguageContext.tsx:40 msgid "Dutch" -msgstr "" +msgstr "Olandese" #: src/contexts/LanguageContext.tsx:41 msgid "Norwegian" -msgstr "" +msgstr "Norvegese" #: src/contexts/LanguageContext.tsx:42 msgid "Polish" -msgstr "" +msgstr "Polacco" #: src/contexts/LanguageContext.tsx:43 msgid "Portuguese" -msgstr "" +msgstr "Portoghese" #: src/contexts/LanguageContext.tsx:44 msgid "Portuguese (Brazilian)" -msgstr "" +msgstr "Portoghese (Brasiliano)" #: src/contexts/LanguageContext.tsx:45 msgid "Romanian" -msgstr "" +msgstr "Rumeno" #: src/contexts/LanguageContext.tsx:46 msgid "Russian" -msgstr "" +msgstr "Russo" #: src/contexts/LanguageContext.tsx:47 msgid "Slovak" -msgstr "" +msgstr "Slovacco" #: src/contexts/LanguageContext.tsx:48 msgid "Slovenian" -msgstr "" +msgstr "Sloveno" #: src/contexts/LanguageContext.tsx:49 msgid "Swedish" -msgstr "" +msgstr "Svedese" #: src/contexts/LanguageContext.tsx:50 msgid "Thai" -msgstr "" +msgstr "Thailandese" #: src/contexts/LanguageContext.tsx:51 msgid "Turkish" -msgstr "" +msgstr "Turco" #: src/contexts/LanguageContext.tsx:52 msgid "Ukrainian" -msgstr "" +msgstr "Ucraino" #: src/contexts/LanguageContext.tsx:53 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamese" #: src/contexts/LanguageContext.tsx:54 msgid "Chinese (Simplified)" -msgstr "" +msgstr "Cinese (Semplificato)" #: src/contexts/LanguageContext.tsx:55 msgid "Chinese (Traditional)" -msgstr "" +msgstr "Cinese (Tradizionale)" #: src/defaults/actions.tsx:18 #: src/defaults/links.tsx:27 #: src/defaults/menuItems.tsx:9 msgid "Home" -msgstr "" +msgstr "Home" #: src/defaults/actions.tsx:25 #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" -msgstr "" +msgstr "Bacheca" #: src/defaults/actions.tsx:26 msgid "Go to the InvenTree dashboard" -msgstr "" +msgstr "Vai alla bacheca InvenTree" #: src/defaults/actions.tsx:33 msgid "Visit the documentation to learn more about InvenTree" -msgstr "" +msgstr "Visita la documentazione per saperne di più su InvenTree" #: src/defaults/actions.tsx:39 #: src/defaults/links.tsx:98 #: src/defaults/links.tsx:128 msgid "About InvenTree" -msgstr "" +msgstr "Informazioni su InvenTree" #: src/defaults/actions.tsx:40 #: src/defaults/links.tsx:129 msgid "About the InvenTree org" -msgstr "" +msgstr "Informazioni su InvenTree org" #: src/defaults/actions.tsx:46 msgid "Server Information" -msgstr "" +msgstr "Informazioni sul Server" #: src/defaults/actions.tsx:47 #: src/defaults/links.tsx:123 msgid "About this Inventree instance" -msgstr "" +msgstr "Informazioni su questa istanza di Inventree" #: src/defaults/actions.tsx:53 #: src/defaults/links.tsx:111 msgid "License Information" -msgstr "" +msgstr "Informazioni sulla licenza" #: src/defaults/actions.tsx:54 #: src/defaults/links.tsx:135 msgid "Licenses for dependencies of the service" -msgstr "" +msgstr "Licenze per dipendenze del servizio" #: src/defaults/actions.tsx:61 msgid "Open the main navigation menu" -msgstr "" +msgstr "Apri il menu di navigazione principale" #: src/defaults/actions.tsx:72 msgid "Go to the Admin Center" -msgstr "" +msgstr "Vai al centro di amministrazione" #: src/defaults/dashboardItems.tsx:15 msgid "Subscribed Parts" -msgstr "" +msgstr "Articoli Sottoscritti" #: src/defaults/dashboardItems.tsx:22 msgid "Subscribed Categories" -msgstr "" +msgstr "Categoria sottoscritta" #: src/defaults/dashboardItems.tsx:29 msgid "Latest Parts" -msgstr "" +msgstr "Articoli Recenti" #: src/defaults/dashboardItems.tsx:36 msgid "BOM Waiting Validation" -msgstr "" +msgstr "Distinta base In attesa di convalida" #: src/defaults/dashboardItems.tsx:43 msgid "Recently Updated" -msgstr "" +msgstr "Aggiornati di recente" #: src/defaults/dashboardItems.tsx:50 #: src/tables/part/PartTable.tsx:238 msgid "Low Stock" -msgstr "" +msgstr "Disponibilità scarsa" #: src/defaults/dashboardItems.tsx:57 msgid "Depleted Stock" -msgstr "" +msgstr "Stock esaurito" #: src/defaults/dashboardItems.tsx:64 msgid "Required for Build Orders" -msgstr "" +msgstr "Richiesto per gli ordini di produzione" #: src/defaults/dashboardItems.tsx:71 msgid "Expired Stock" -msgstr "" +msgstr "Stock Scaduto" #: src/defaults/dashboardItems.tsx:78 msgid "Stale Stock" -msgstr "" +msgstr "Stock obsoleto" #: src/defaults/dashboardItems.tsx:85 msgid "Build Orders In Progress" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2675,7 +2669,7 @@ msgstr "" #: src/defaults/menuItems.tsx:21 #: src/pages/Index/Scan.tsx:763 msgid "Scanning" -msgstr "" +msgstr "Scansione" #: src/defaults/menuItems.tsx:21 #~ msgid "Free for everyone" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3584,15 +3582,15 @@ msgstr "" #: src/pages/Index/Scan.tsx:650 msgid "Error while getting camera" -msgstr "" +msgstr "Errore durante l'acquisizione della fotocamera" #: src/pages/Index/Scan.tsx:673 msgid "Error while scanning" -msgstr "" +msgstr "Errore durante la scansione" #: src/pages/Index/Scan.tsx:687 msgid "Error while stopping" -msgstr "" +msgstr "Errore durante l'arresto" #: src/pages/Index/Scan.tsx:745 msgid "Stop scanning" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/ja/messages.po b/src/frontend/src/locales/ja/messages.po index 7b845775f4..478650214a 100644 --- a/src/frontend/src/locales/ja/messages.po +++ b/src/frontend/src/locales/ja/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ja\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "削除" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "ユーザー名" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "続きを読む" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "パーツ" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "パーツ" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "在庫商品" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "在庫商品" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "在庫場所" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "在庫場所" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "ユーザー" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "パーツ" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "在庫商品" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "在庫場所" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "在庫" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "言語" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "価格" @@ -4045,41 +4122,49 @@ msgstr "価格" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "未読にする" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "未読にする" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "説明" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "添付ファイル" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "メモ" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "詳細" @@ -4520,11 +4605,11 @@ msgstr "詳細" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "在庫商品を編集" @@ -5519,38 +5610,38 @@ msgstr "在庫商品を編集" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "表フィルタ" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/ko/messages.po b/src/frontend/src/locales/ko/messages.po index 7e9b001759..df6e92699e 100644 --- a/src/frontend/src/locales/ko/messages.po +++ b/src/frontend/src/locales/ko/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ko\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/lv/messages.po b/src/frontend/src/locales/lv/messages.po index dfcdfd9bee..4c452b59bb 100644 --- a/src/frontend/src/locales/lv/messages.po +++ b/src/frontend/src/locales/lv/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lv\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/nl/messages.po b/src/frontend/src/locales/nl/messages.po index c081f5777a..19080f2b71 100644 --- a/src/frontend/src/locales/nl/messages.po +++ b/src/frontend/src/locales/nl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: nl\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Label afdrukken succesvol voltooid" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "De bijbehorende afbeelding van dit item verwijderen?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Verwijderen" @@ -188,7 +188,6 @@ msgstr "Wis" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Versturen" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Er staan fouten in één of meer formuliervelden" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Bijwerken" @@ -437,7 +436,7 @@ msgstr "Bijwerken" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Verwijderen" @@ -498,6 +497,7 @@ msgstr "Of ga verder met andere methoden" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Gebruikersnaam" @@ -608,9 +608,10 @@ msgstr "Hostnaam" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "{0} pictogrammen" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Zoeken" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Meer informatie" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Onbekende fout." @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "Foutcorrectie niveau selecteren" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Link" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Venster sluiten" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Server" @@ -1267,7 +1268,7 @@ msgstr "Account instellingen" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Systeem instellingen" @@ -1286,7 +1287,7 @@ msgstr "Kleur modus wijzigen" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Beheerder Center" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Pagina's" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Plug-ins" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Over" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Geen resultaten gevonden" msgid "No results available for search query" msgstr "Geen resultaten beschikbaar voor zoekopdracht" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Onbekend model: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Onbekend model: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Onbekend model: {model}" msgid "Part" msgstr "Onderdeel" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Onderdelen" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Sjabloon deelparameter" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Sjablonen deelparameter" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Sjabloon test onderdeel" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Templatesjablonen voor onderdeel" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Leverancier onderdeel" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Leveranciers onderdelen" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Fabrikant onderdeel" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Fabrikant onderdelen" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Onderdeel categorie" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Onderdeel categorieën" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Voorraad item" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Voorraad items" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Voorraad locatie" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Voorraad locatie" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "Voorraad locatie type" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Voorraad locatie types" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Voorraad geschiedenis" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "Productieorder" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Voorraad Historieën" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Bedrijf" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Bedrijven" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Bedrijf" msgid "Project Code" msgstr "Project code" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Project codes" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Inkooporder" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Inkooporders" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Inkooporder regel" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Inkooporder regels" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Verkooporder" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Verkooporders" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Verzending verkooporder" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Verzendingen verkooporders" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Retourorder" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Retourorders" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "Retourneer bestelregel item" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "Retourneer bestelregel items" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adres:" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adressen" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Contact" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Contacten" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Eigenaar" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Eigenaren" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Gebruiker" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Groep" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "Sessie Importeren" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "Label sjabloon" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "Rapporteer sjabloon" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Plug-in configuratie" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "Content type" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Onderdelen" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Sjablonen deelparameter" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Templatesjablonen voor onderdeel" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Leveranciers onderdelen" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Fabrikant onderdelen" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Onderdeel categorieën" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Voorraad items" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Voorraad locatie" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "Voorraad locatie types" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Voorraad Historieën" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Productieorders" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Bedrijven" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Project codes" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Inkooporders" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Verkooporders" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Verzendingen verkooporders" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Retourorders" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "Retourneer bestelregel items" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adressen" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Contacten" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Eigenaren" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Gebruikers" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Groep" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Groepen" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "Sessie Importeren" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "Sessies importeren" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "Label sjabloon" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "Label sjablonen" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "Rapporteer sjabloon" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "Rapport sjablonen" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Plug-in configuratie" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Plug-in configuraties" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "Content type" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "Content Types" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Verzending" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inactief" @@ -1795,17 +1802,17 @@ msgstr "Geen voorraad" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Voorraad" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Serienummer" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "Geen instellingen opgegeven" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "Geen instellingen opgegeven" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Kleur modus" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Taal" @@ -2420,7 +2419,7 @@ msgstr "Startpagina" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Dashboard" @@ -2548,7 +2547,7 @@ msgstr "Huidig nieuws" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Website" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Kopen" @@ -2579,9 +2573,9 @@ msgstr "Kopen" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Verkoop" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "Regel verwijderen" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "Bron locatie" @@ -2917,7 +2911,7 @@ msgstr "Opmerking toevoegen" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "Winkel met reeds ontvangen voorraad" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "Serienummers" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "Verpakking" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Status" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "Opmerking" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "SKU" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Voer serienummer in voor nieuwe voorraad (of laat het leeg)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "Voorraad status" @@ -3048,7 +3042,7 @@ msgstr "Voorraad status" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "Verplaats naar standaardlocatie" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Op voorraad" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Verplaatsen" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Toevoegen" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Aantal" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "Voorraad verwijderen" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Voorraad verplaatsen " #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Tel voorraad" @@ -3610,16 +3608,45 @@ msgstr "Niet aan het scannen" msgid "Select Camera" msgstr "Selecteer camera" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "Laatst opgehaald" msgid "Base currency" msgstr "Basis valuta" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Productieorders" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "Omschrijving" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Productiehoeveelheid" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Uitgegeven door" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "Uitgegeven door" msgid "Responsible" msgstr "Verantwoordelijk" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Aangemaakt" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "Compleet" @@ -4229,7 +4314,7 @@ msgstr "Compleet" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "Elke locatie" @@ -4237,7 +4322,7 @@ msgstr "Elke locatie" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "Doel Locatie" @@ -4253,69 +4338,69 @@ msgstr "Doel Locatie" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Bouw details" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Regelitems" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Onvolledige uitvoer" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "Toegewezen voorraad" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Verbruikte voorraad" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Print bouw order" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Test resultaten" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "Test statistieken" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Bijlagen" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Opmerkingen" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Bewerk bouwopdracht" @@ -4333,126 +4418,126 @@ msgstr "Bewerk bouwopdracht" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Voeg bouwopdracht toe" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "Annuleer bouworder" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "Deze order annuleren" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "Klant" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "Fabrikant onderdeel" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "Fabrikant onderdeel" msgid "Pack Quantity" msgstr "Pakket hoeveelheid" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "Beschikbaarheid van de leverancier" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "Beschikbaarheid bijgewerkt" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "Beschikbaarheid" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Ontvangen voorraad" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "Leverancier prijzen" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "Acties leverancier onderdelen" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Bewerk leveranciersdeel" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Verwijder leveranciersdeel" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Leveranciersdeel toevoegen" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Locatie" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "Bovenliggende categorie" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "Subcategorieën" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "Variantie van" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "Revisie van" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Revisie" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Categorie" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "Standaard locatie" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "Standaard categorie locatie" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Eenheden" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Trefwoorden" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "Trefwoorden" msgid "Available Stock" msgstr "Beschikbare voorraad" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "Variant voorraad" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "Minimale voorraad" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "In bestelling" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "Vereist voor bestellingen" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "Toegewezen aan het bouwen van orders" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "Toegewezen aan verkooporders" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Kan bouwen" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "In productie" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "Vergrendeld" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "Sjabloon onderdeel" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Samengesteld onderdeel" @@ -4846,7 +4931,7 @@ msgstr "Samengesteld onderdeel" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "Onderdeel" @@ -4854,114 +4939,114 @@ msgstr "Onderdeel" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "Testbaar onderdeel" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "Traceerbaar onderdeel" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "Aankoopbaar onderdeel" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "Verkoopbaar onderdeel" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "Virtueel onderdeel" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Aangemaakt op" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Aangemaakt door" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Standaard leverancier" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Prijs bereik" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Laatste voorraadcontrole" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Voorraadcontrole door" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Details onderdelen" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Varianten" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Toewijzingen" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Productie-opdracht toewijzingen" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Verkoopordertoewijzingen" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Materiaallijst" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Wordt gebruikt in" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Prijzen onderdeel" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Fabrikant" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Planning" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Test sjablonen" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Gerelateerde onderdelen" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "Gerelateerde onderdelen" msgid "Available" msgstr "Beschikbaar" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "Geen voorraad" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "Vereist" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "In bestelling" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "Leverancier prijs" msgid "Variant Part" msgstr "Variant onderdeel" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "Bewerk inkooporder" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "Inkooporder toevoegen" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "Referentie leverancier" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "Afgeronde regel items" @@ -5268,91 +5353,91 @@ msgstr "Afgeronde regel items" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "Bestelling valuta" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "Totale kosten" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "Gemaakt op" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Order Details" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "Extra regelitems" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "Inkooporder aanmaken" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "Order annuleren" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "Order vasthouden" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "Bestelling afronden" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Order acties" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Klantreferentie" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "Retour order bewerken" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "Retourorder toevoegen" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "Issue retour order" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "Annuleer retour order" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "Bestelling geannuleerd" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "Retour order vasthouden" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "Voltooi retour bestelling" @@ -5360,15 +5445,15 @@ msgstr "Voltooi retour bestelling" msgid "Customers" msgstr "Klanten" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Voltooide Verzendingen" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "Verkooporder bewerken" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "Voeg Verkooporder toe" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "Zending" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "Verkooporder annuleren" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "Verkooporder voltooien" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "Bestelling verzenden" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "Bovenliggende locatie" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "Sub locatie" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "Extern" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "Locatie type" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "Locatie voorraad topniveau" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "Locatie gegevens" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "Standaard onderdelen" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "Voorraadlocatie bewerken" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "Voorraadlocatie verwijderen" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "Artikel actie" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "Actie voor voorraad items op deze locatie" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "Acties voor onderliggende locaties" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "Actie voor onderliggende locaties in deze locatie" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "Locatie acties" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Basis onderdeel" @@ -5475,11 +5560,11 @@ msgstr "Basis onderdeel" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "Geïnstalleerd in" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "Verbruikt door" @@ -5487,31 +5572,37 @@ msgstr "Verbruikt door" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "Productieorder" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "Voorraad details" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Voorraad bijhouden" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Test gegevens" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Geïnstalleerde items" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Onderliggende artikelen" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Bewerk voorraadartikel" @@ -5519,38 +5610,38 @@ msgstr "Bewerk voorraadartikel" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "Voorraad artikel verwijderen" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Voorraad activiteiten" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Tellen voorraad" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Voorraad toevoegen" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Voorraad verwijderen" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Verplaatsen" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Voorraad verplaatsen" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "Voorraad artikel acties" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Filters wissen" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Geen gegevens gevonden" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "Server heeft onjuist gegevenstype teruggestuurd" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Slecht verzoek" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Niet-geautoriseerd" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Niet toegestaan." -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Niet gevonden" @@ -5696,18 +5787,14 @@ msgstr "Niet gevonden" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "Geselecteerde items verwijderen" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "Weet u zeker dat u de geselecteerde items wilt verwijderen?" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "Deze actie kan niet ongedaan worden gemaakt!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "Deze actie kan niet ongedaan worden gemaakt!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "Deze actie kan niet ongedaan worden gemaakt!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "Deze actie kan niet ongedaan worden gemaakt!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Streepjescode acties" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Verwijder de geselecteerde records" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Gegevens vernieuwen" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Tabel filters" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/no/messages.po b/src/frontend/src/locales/no/messages.po index 2ed3562c88..c8f7bd88d2 100644 --- a/src/frontend/src/locales/no/messages.po +++ b/src/frontend/src/locales/no/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: no\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Fjern" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Send" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Oppdater" @@ -437,7 +436,7 @@ msgstr "Oppdater" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Slett" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Brukernavn" @@ -608,9 +608,10 @@ msgstr "Vert" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Søk" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Les mer" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Ukjent feil" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Lenke" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Lukk modal" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Server" @@ -1267,7 +1268,7 @@ msgstr "Kontoinnstillinger" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Systeminnstillinger" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Adminsenter" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Sider" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Utvidelser" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Om" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Ingen resultater" msgid "No results available for search query" msgstr "Ingen resultater tilgjengelig for søk" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Ukjent modell: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Ukjent modell: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Ukjent modell: {model}" msgid "Part" msgstr "Del" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Deler" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Mal for Delparameter" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Maler for Delparameter" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Leverandørdel" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Leverandørdeler" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Produsentdel" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Produsentdeler" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Delkategori" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Delkategorier" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Lagervare" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Lagervarer" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Lagerplassering" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Lagerplasseringer" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Lagerhistorikk" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Lagerhistorikk" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Produksjon" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Produksjoner" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Firma" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Firma" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Firma" msgid "Project Code" msgstr "Prosjektkode" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Prosjektkoder" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Innkjøpsordre" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Innkjøpsordrer" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Ordrelinje for innkjøpsordre" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Ordrelinjer for innkjøpsordre" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Salgsordre" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Salgsordrer" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Salgsordreforsendelse" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Salgsordreforsendelser" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Returordre" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Returordrer" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adresse" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adresser" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Kontakt" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Kontakter" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Eier" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Eiere" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Bruker" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Deler" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Maler for Delparameter" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Leverandørdeler" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Produsentdeler" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Delkategorier" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Lagervarer" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Lagerplasseringer" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Lagerhistorikk" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Produksjonsordrer" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Firma" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Prosjektkoder" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Innkjøpsordrer" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Salgsordrer" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Salgsordreforsendelser" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Returordrer" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adresser" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Kontakter" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Eiere" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Brukere" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Grupper" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Forsendelse" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "Ingen lagerbeholdning" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Lagerbeholdning" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Serienummer" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Visningsinnstillinger" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Fargemodus" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Språk" @@ -2420,7 +2419,7 @@ msgstr "Hjem" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Dashbord" @@ -2548,7 +2547,7 @@ msgstr "Aktuelle nyheter" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Nettside" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Produksjon" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Innkjøp" @@ -2579,9 +2573,9 @@ msgstr "Innkjøp" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Salg" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Status" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Angi serienumre for ny lagerbeholdning (eller la stå tom)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "På lager" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Legg til" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Tell" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Overfør lager" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Tell beholdning" @@ -3610,17 +3608,46 @@ msgstr "Skanner ikke" msgid "Select Camera" msgstr "Velg kamera" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Kontodetaljer" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Fornavn" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Etternavn" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,16 +3658,29 @@ msgstr "Etternavn" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Bruk pseudo-språk" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "streker" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "oval" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "prikker" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Tema" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Hovedfarge" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Bruk pseudo-språk" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Hvit farge" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Svart farge" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Kantradius" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Laster" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Bakgrunnsoppgaver" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Feilrapporter" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Egendefinerte enheter" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Delparametere" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Hurtighandlinger" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Legg til en ny bruker" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Avanserte Innstillinger" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Info" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "Eksterne utvidelser er ikke aktivert for denne InvenTree-installasjonen." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "Eksterne utvidelser er ikke aktivert for denne InvenTree-installasjonen." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "Eksterne utvidelser er ikke aktivert for denne InvenTree-installasjonen. #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Innstillinger for Utvidelser" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4017,6 +4082,18 @@ msgstr "Mislykkede oppgaver" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Velg innstillinger som er relevante for brukerens livssyklus. Mer tilgjengelig i" @@ -4025,15 +4102,15 @@ msgstr "Velg innstillinger som er relevante for brukerens livssyklus. Mer tilgje msgid "System settings" msgstr "Systeminnstillinger" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Innlogging" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Strekkoder" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Prising" @@ -4045,41 +4122,49 @@ msgstr "Prising" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Etiketter" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Rapportering" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Lagertelling" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Produksjonsordrer" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Bytt til brukerinnstilling" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Konto" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Sikkerhet" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Visningsvalg" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Kontoinnstillinger" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Bytt til systeminnstilling" @@ -4115,8 +4200,8 @@ msgstr "Marker som ulest" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Marker som ulest" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "Beskrivelse" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Fullførte artikler" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "Ansvarlig" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Opprettet" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Måldato" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Produksjonsdetaljer" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Ordrelinjer" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Ufullstendige artikler" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Brukt lagerbeholdning" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Underordnede Produksjonsordrer" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Vedlegg" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Notater" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Rediger produksjonsordre" @@ -4333,126 +4418,126 @@ msgstr "Rediger produksjonsordre" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Legg til produksjonsordre" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Produksjonsordre-handlinger" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "Leverandør" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Produsent" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "Produsent" msgid "Customer" msgstr "Kunde" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Detaljer" @@ -4520,11 +4605,11 @@ msgstr "Detaljer" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Produserte deler" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Leverte Deler" @@ -4532,84 +4617,84 @@ msgstr "Leverte Deler" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Tildelt lagerbeholdning" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Rediger Bedrift" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "Bedriftshandlinger" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "Produsentens delenummer" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parametere" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Leverandører" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "Rediger produsentdel" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "Slett produsentdel" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "Pakkeantall" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Mottatt lagerbeholdning" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Rediger Leverandørdel" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Slett Leverandørdel" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Legg til leverandørdel" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Sti" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Strukturell" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Kategori" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Enheter" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Nøkkelord" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "Nøkkelord" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "I bestilling" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Kan Produsere" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "Under produksjon" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Sammenstilt del" @@ -4846,7 +4931,7 @@ msgstr "Sammenstilt del" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "Sporbar del" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Opprettelsesdato" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Prisområde" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Varianter" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Tildelinger" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Produksjonsordre-tildelinger" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Salgsordretildelinger" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Stykkliste (BOM)" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Brukt i" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Produsenter" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Planlegging" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Testmaler" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Relaterte Deler" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "Relaterte Deler" msgid "Available" msgstr "Tilgjengelig" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "I bestilling" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Rediger del" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Lagerhandlinger" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Tell delbeholdning" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Overfør delbeholdning" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Delhandlinger" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Ordredetaljer" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Ordrehandlinger" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Kundereferanse" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "Kunder" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Fullførte forsendelser" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Basisdel" @@ -5475,11 +5560,11 @@ msgstr "Basisdel" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Sporing av lager" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Testdata" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Installerte artikler" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Underordnede artikler" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Rediger lagervare" @@ -5519,38 +5610,38 @@ msgstr "Rediger lagervare" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Lagerhandlinger" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Tell beholdning" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Legg til lager" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Fjern lager" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Overfør" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Overfør lager" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Fjern filtre" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Ingen poster funnet" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "Serveren returnerte feil datatype" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Ugyldig forespørsel" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Uautorisert" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Forbudt" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Ikke funnet" @@ -5696,18 +5787,14 @@ msgstr "Ikke funnet" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "Denne handlingen kan ikke angres!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "Denne handlingen kan ikke angres!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "Denne handlingen kan ikke angres!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "Denne handlingen kan ikke angres!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Strekkodehandlinger" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Slett valgte oppføringer" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Oppdater data" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Tabellfiltre" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Innebygd" @@ -7137,7 +7228,7 @@ msgstr "Aktivér utvidelse" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Deaktiver" @@ -7145,7 +7236,7 @@ msgstr "Deaktiver" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Aktivér" @@ -7173,75 +7264,75 @@ msgstr "Aktivér" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "Installer Utvidelse" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "Installer" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "Utvidelse installert" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "Utvidelser lastet inn på nytt" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "Utvidelser ble lastet inn på nytt" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "Last utvidelser på nytt" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "Installer Utvidelse" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Eksempel" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Installert" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,8 +7959,12 @@ msgid "Filter by stock status" msgstr "Filtrer etter lagerstatus" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" -msgstr "Vis lagerbeholdning for sammensatte deler" +msgid "Show stock for assembled parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" diff --git a/src/frontend/src/locales/pl/messages.po b/src/frontend/src/locales/pl/messages.po index 8264b5170d..dd339f74be 100644 --- a/src/frontend/src/locales/pl/messages.po +++ b/src/frontend/src/locales/pl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pl\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Polish\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -70,7 +70,7 @@ msgstr "Drukowanie etykiety zakończone powodzeniem" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Usunąć powiązany obrazek z tego elementu?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Usuń" @@ -188,7 +188,6 @@ msgstr "Wyczyść" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Zatwierdź" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Istnieją błędy dla jednego lub więcej pól formularzy" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Aktualizuj" @@ -437,7 +436,7 @@ msgstr "Aktualizuj" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Usuń" @@ -498,6 +497,7 @@ msgstr "Lub kontynuuj za pomocą innych metod" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Nazwa użytkownika" @@ -608,9 +608,10 @@ msgstr "Host" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Szukaj" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Czytaj dalej" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Nieznany błąd" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "Wybierz poziom korekty błędów" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Zamknij okno" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Serwer" @@ -1267,7 +1268,7 @@ msgstr "Ustawienia konta" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Ustawienia systemowe" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Centrum Admina" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Strony" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Wtyczki" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "O nas" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Brak wyników" msgid "No results available for search query" msgstr "Brak dostępnych wyników wyszukiwania" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Nieznany model: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Nieznany model: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Nieznany model: {model}" msgid "Part" msgstr "Komponent" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Komponenty" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Część dostawcy" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Części dostawcy" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Część Producenta" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Części producenta" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Kategoria części" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Kategorie części" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Element magazynowy" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Elementy magazynowe" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Lokacja stanu" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Lokacje stanów" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Historia magazynu" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Historia magazynu" + +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Firma" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Firmy" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Firma" msgid "Project Code" msgstr "Kod projektu" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Kody projektu" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Zlecenie zakupu" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Zlecenia zakupu" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Pozycja zlecenia zakupu" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Pozycje zlecenia zakupu" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Zlecenie sprzedaży" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Zlecenia Sprzedaży" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adres" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adresy" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Kontakt" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Kontakty" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Właściciel" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Właściciele" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Użytkownik" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Grupa" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "Importuj sesje" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "Szablon etykiety" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "Szablon Raportu" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Konfiguracja wtyczki" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Komponenty" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Części dostawcy" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Części producenta" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Kategorie części" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Elementy magazynowe" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Lokacje stanów" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Historia magazynu" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Zlecenia wykonania" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Firmy" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Kody projektu" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Zlecenia zakupu" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Zlecenia Sprzedaży" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adresy" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Kontakty" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Właściciele" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Użytkownicy" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Grupa" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Grupy" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "Importuj sesje" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "Importuj sesje" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "Szablon etykiety" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "Szablony etykiet" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "Szablon Raportu" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "Szablony raportów" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Konfiguracja wtyczki" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Konfiguracje wtyczki" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Wysyłka" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Nieaktywny" @@ -1795,17 +1802,17 @@ msgstr "Brak w magazynie" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Stan" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Numer seryjny" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "Nie podano ustawień" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "Nie podano ustawień" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Ustawienia wyświetlania" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Tryb kolorów" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Język" @@ -2420,7 +2419,7 @@ msgstr "Strona główna" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Kokpit" @@ -2548,7 +2547,7 @@ msgstr "Aktualności" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Strona internetowa" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Zakupy" @@ -2579,9 +2573,9 @@ msgstr "Zakupy" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Sprzedaże" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "Dodaj notatkę" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "Numery seryjne" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "Opakowanie" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Status" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "Notatka" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "SKU" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Wprowadź numery seryjne dla nowego stanu (lub pozostaw puste)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "Przenieś do domyślnej lokalizacji" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Na stanie" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Przenieś" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Dodaj" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Ilość" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "Usuń stan" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Przenieś stan" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Policz stan" @@ -3610,17 +3608,46 @@ msgstr "Nie skanuje" msgid "Select Camera" msgstr "Wybierz kamerę" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Szczegóły konta" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Imię" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Nazwisko" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,15 +3658,28 @@ msgstr "Nazwisko" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Imię:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Nazwisko:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "kropki" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Motyw" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Kolor podstawowy" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Kolor biały" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Kolor czarny" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Promień obramowania" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Zadania w tle" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Raporty o błędach" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Waluty" @@ -3858,20 +3922,21 @@ msgstr "Waluty" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Jednostki niestandardowe" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Parametry części" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Parametry kategorii" @@ -3879,24 +3944,24 @@ msgstr "Parametry kategorii" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Maszyny" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Szybkie akcje" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Dodaj nowego użytkownika" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Opcje zaawansowane" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Info" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Błędy wtyczek" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Ustawienia wtyczki" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Błędy wtyczek" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4017,6 +4082,18 @@ msgstr "Zadania zakończone błędem" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Zaloguj się" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Kody kreskowe" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Cennik" @@ -4045,41 +4122,49 @@ msgstr "Cennik" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Etykiety" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Raportowanie" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Zlecenia wykonania" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Przełącz na ustawienie użytkownika" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Konto" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Bezpieczeństwo" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Wyświetl opcje" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Ustawienia konta" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Przełącz na ustawienia systemowe" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/pt/messages.po b/src/frontend/src/locales/pt/messages.po index 5b6d25c5db..a290ca901c 100644 --- a/src/frontend/src/locales/pt/messages.po +++ b/src/frontend/src/locales/pt/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Impressão da etiqueta concluída com sucesso" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Remover a imagem associada a este item?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Eliminar" @@ -188,7 +188,6 @@ msgstr "Apagar" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Enviar" @@ -428,7 +427,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Atualizar" @@ -438,7 +437,7 @@ msgstr "Atualizar" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Eliminar" @@ -499,6 +498,7 @@ msgstr "Ou continuar com outros métodos" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Nome de utilizador" @@ -609,9 +609,10 @@ msgstr "Servidor" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -688,7 +689,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Buscar" @@ -969,7 +970,7 @@ msgid "Read More" msgstr "Mais informações" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Erro desconhecido" @@ -1039,10 +1040,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Ligação" @@ -1165,7 +1166,7 @@ msgid "Close modal" msgstr "Fechar diálogo" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Servidor" @@ -1268,7 +1269,7 @@ msgstr "Configurações da conta" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Definições de Sistema" @@ -1287,7 +1288,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Centro de Administração" @@ -1322,8 +1323,8 @@ msgid "Pages" msgstr "Páginas" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Extensões" @@ -1337,8 +1338,8 @@ msgid "About" msgstr "Sobre" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1399,23 +1400,27 @@ msgstr "Sem resultados" msgid "No results available for search query" msgstr "Não há resultados disponíveis para a pesquisa" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Modelo desconhecido: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1428,8 +1433,8 @@ msgstr "Modelo desconhecido: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1439,76 +1444,148 @@ msgstr "Modelo desconhecido: {model}" msgid "Part" msgstr "Peça" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Peças" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Modelo de Parâmetro da Peça" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Modelos de Parâmetro da Peça" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Modelos de Teste da Peça" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Modelos de Teste da Peça" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Fornecedor da Peça" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Peças de fornecedor" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Fabricante da peça" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Peças do fabricante" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Categoria da peça" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Categorias da Peça" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Item de Estoque" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Itens de Estoque" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Localização de Stock" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Localizações de Stock" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "Tipo de Local de Estoque" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Tipo de Local de Estoque" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Histórico de Estoque" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "Ordem de Produção" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Histórico de Estoque" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Produção" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Produções" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "Linha de produção" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "Linhas de produção" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Empresa" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Empresas" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1517,263 +1594,193 @@ msgstr "Empresa" msgid "Project Code" msgstr "Código do projeto" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Códigos do Projeto" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Pedido de Compra" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Pedidos de compra" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Pedido de compra da linha" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Pedido de compra das linhas" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Pedido de Venda" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Pedidos de vendas" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Envio do Pedido de Venda" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Envios dos Pedidos de Vendas" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Pedido de Devolução" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Pedidos de Devolução" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Endereço" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Endereços" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Contato" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Contatos" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Proprietário" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Proprietários" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Utilizador" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "Modelo de Etiqueta" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "Modelo de relatório" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Configuração de Extensão" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Peças" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Modelos de Parâmetro da Peça" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Modelos de Teste da Peça" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Peças de fornecedor" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Peças do fabricante" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Categorias da Peça" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Itens de Estoque" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Localizações de Stock" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "Tipo de Local de Estoque" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Histórico de Estoque" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Ordens de Produções" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "Linhas de produção" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Empresas" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Códigos do Projeto" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Pedidos de compra" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Pedidos de vendas" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Envios dos Pedidos de Vendas" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Pedidos de Devolução" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Endereços" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Contatos" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Proprietários" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Utilizadores" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Grupos" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "Modelo de Etiqueta" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "Modelos de Etiqueta" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "Modelo de relatório" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "Modelos de relatório" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Configuração de Extensão" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Configurações de Extensões" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1781,9 +1788,9 @@ msgstr "Envios" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inativo" @@ -1796,17 +1803,17 @@ msgstr "Sem Estoque" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Estoque" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1819,8 +1826,8 @@ msgstr "Número de Série" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2184,14 +2191,6 @@ msgstr "Nenhuma configuração especificada" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2205,17 +2204,17 @@ msgstr "Nenhuma configuração especificada" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Definições de Exibição" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Modo de Cor" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Idioma" @@ -2421,7 +2420,7 @@ msgstr "Início" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Painel de controlo" @@ -2549,7 +2548,7 @@ msgstr "Notícias Atuais" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Site" @@ -2561,18 +2560,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demonstração" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Produção" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Comprando" @@ -2580,9 +2574,9 @@ msgstr "Comprando" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Vendas" @@ -2819,7 +2813,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "Localização de Origem" @@ -2918,7 +2912,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2937,9 +2931,9 @@ msgid "Store with already received stock" msgstr "Armazenar com estoque já recebido" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2952,18 +2946,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "Embalagem" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2979,13 +2973,13 @@ msgid "Status" msgstr "Estado" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "Nota" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "SKU" @@ -3040,7 +3034,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Insira os números de série para novo estoque (ou deixe em branco)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "Estado do Estoque" @@ -3049,7 +3043,7 @@ msgstr "Estado do Estoque" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3071,8 +3065,8 @@ msgstr "Mover para o local padrão" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Em Estoque" @@ -3082,14 +3076,14 @@ msgid "Move" msgstr "Mover" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Adicionar" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Contar" @@ -3102,12 +3096,16 @@ msgid "Remove Stock" msgstr "Remover Estoque" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Transferir Estoque" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Contar Estoque" @@ -3611,17 +3609,46 @@ msgstr "Não digitalizar" msgid "Select Camera" msgstr "Selecionar câmara" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Detalhes da Conta" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Primeiro Nome" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Apelido" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3632,16 +3659,29 @@ msgstr "Apelido" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Primeiro Nome:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Apelido:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Usar pseudo-idioma" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3738,7 +3778,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3750,7 +3790,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3767,38 +3807,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "barras" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "oval" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "pontos" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Tema" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Cor primária" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Usar pseudo-idioma" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Cor branca" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Cor preta" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Raio da Margem" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Carregador" @@ -3839,19 +3903,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Tarefas em segundo plano" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Relatórios de Erros" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Moedas" @@ -3859,20 +3923,21 @@ msgstr "Moedas" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Unidades Personalizadas" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Parâmetros da Peça" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Parâmetros de Categoria" @@ -3880,24 +3945,24 @@ msgstr "Parâmetros de Categoria" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Máquinas" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Ações Rápidas" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Adicionar um novo utilizador" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Opções Avançadas" @@ -3913,19 +3978,19 @@ msgstr "Erro de máquina na Stack" msgid "There are no machine registry errors." msgstr "Não há erros de registro da máquina." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Informação" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "Extensões externas não estão ativados para esta instalação do InvenTree." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "Extensões externas não estão ativados para esta instalação do InvenTree." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3934,14 +3999,14 @@ msgstr "Extensões externas não estão ativados para esta instalação do Inven #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Erros de Extensão" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Configurações da Extensão" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Erros de Extensão" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4018,6 +4083,18 @@ msgstr "Tarefas que falharam" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Selecione as configurações relevantes para o ciclo de vida dos usuários. Mais informações disponíveis em" @@ -4026,15 +4103,15 @@ msgstr "Selecione as configurações relevantes para o ciclo de vida dos usuári msgid "System settings" msgstr "Definições de Sistema" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Iniciar sessão" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Códigos de barras" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Preços" @@ -4046,41 +4123,49 @@ msgstr "Preços" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Etiquetas" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Relatórios" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Balanço" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Ordens de Produções" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Mudar para Configuração de Usuário" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Conta" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Segurança" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Opções de Exibição" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Definições da Conta" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Mudar para Configuração do Sistema" @@ -4116,8 +4201,8 @@ msgstr "Marcar como não lido" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4127,26 +4212,26 @@ msgstr "Marcar como não lido" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Referência" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4164,29 +4249,29 @@ msgstr "Referência" msgid "Description" msgstr "Descrição" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "Produção Parente" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Quantidade de Produção" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Saídas Concluídas" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Emitido por" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4194,15 +4279,15 @@ msgstr "Emitido por" msgid "Responsible" msgstr "Responsável" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Criado" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4216,7 +4301,7 @@ msgstr "Data alvo" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "Concluído" @@ -4230,7 +4315,7 @@ msgstr "Concluído" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "Qualquer localização" @@ -4238,7 +4323,7 @@ msgstr "Qualquer localização" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "Local de Destino" @@ -4254,69 +4339,69 @@ msgstr "Local de Destino" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Detalhes da Produção" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Itens de linha" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Saídas Incompletas" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Estoque Consumido" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Pedido de Produção Filho" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Resultados do teste" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Anexos" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4326,7 +4411,7 @@ msgstr "Anotações" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Editar Pedido de Produção" @@ -4334,126 +4419,126 @@ msgstr "Editar Pedido de Produção" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Novo Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "Cancelar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Ações do Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "Cancelar pedido" @@ -4465,24 +4550,24 @@ msgstr "Cancelar pedido" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "Número de Telefone" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "Endereço de Email" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "Moeda Padrão" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4490,21 +4575,21 @@ msgstr "Moeda Padrão" msgid "Supplier" msgstr "Fornecedor" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Fabricante" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4512,7 +4597,7 @@ msgstr "Fabricante" msgid "Customer" msgstr "Cliente" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Detalhes" @@ -4521,11 +4606,11 @@ msgstr "Detalhes" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Peças Fabricadas" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Peças fornecidas" @@ -4533,84 +4618,84 @@ msgstr "Peças fornecidas" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Estoque Atribuído" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Editar Empresa" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "Ações da Empresa" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "Peça Interna" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "Link Externo" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "Número da Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "Detalhes do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "Detalhes da Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parâmetros" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Fornecedores" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "Editar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "Adicionar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "Excluir Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "Ações da Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "Peça do Fabricante" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4618,163 +4703,163 @@ msgstr "Peça do Fabricante" msgid "Pack Quantity" msgstr "Quantidade embalada" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "Disponibilidade do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "Disponibilidade Atualizada" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "Disponibilidade" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "Detalhes da Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Estoque Recebido" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "Preço do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "Ações do Fornecedor da Peça" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Editar Fornecedor da Peça" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Excluir Fornecedor da Peça" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Adicionar Fornecedor da Peça" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Caminho" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "Categoria Parente" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "Sub-categorias" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Estrutural" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "Armazenar na localização Parente" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "Localização predefinida" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "Categoria da peça de nível superior" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "Editar Categoria da Peça" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "Eliminar itens" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "Definir Categoria da Peça" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "Ações da peça" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "Ações para peças nesta categoria" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "Ações para Categorias Filhas" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "Ações para Caregorias Filhas nesta Categoria" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "Ações da Categoria" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "Detalhes da Categoria" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "Variante de" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Revisão" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Categoria" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "Localização Padrão" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "Localização padrão da Categoria" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Unidades" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Palavras-chave" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4782,49 +4867,49 @@ msgstr "Palavras-chave" msgid "Available Stock" msgstr "Estoque Disponível" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "Estoque Mínimo" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "Na ordem" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "Alocado para Pedidos de Produção" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "Alocado para Pedidos de Venda" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Pode Produzir" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "Em Produção" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4834,11 +4919,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "Peça Modelo" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Peça montada" @@ -4847,7 +4932,7 @@ msgstr "Peça montada" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "Peça do componente" @@ -4855,114 +4940,114 @@ msgstr "Peça do componente" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "Peça rastreável" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "Peça comprável" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "Peça vendível" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "Peça virtual" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Data de Criação" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Criado por" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Fornecedor Padrão" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Intervalo de Preço" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Último Balanço" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Balanço por" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Detalhes da Peça" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Variantes" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Alocações" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Alocações de Pedido de Produção" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Alocações do Pedido de Vendas" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Lista de Materiais" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Utilizado em" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Preço da Peça" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Fabricantes" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Agendamento" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Modelos de Teste" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Peças Relacionadas" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4970,59 +5055,59 @@ msgstr "Peças Relacionadas" msgid "Available" msgstr "Disponível" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "Sem Estoque" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "Obrigatório" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "No Pedido" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Editar Peça" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "Adicionar Peça" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "Excluir Peça" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "A exclusão desta parte não pode ser revertida" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Ações de Estoque" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Contagem do estoque" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Transferir peça do estoque" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Ações da Peça" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5183,7 +5268,7 @@ msgid "Overall Pricing" msgstr "Preços Gerais" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "Última Atualização" @@ -5243,23 +5328,23 @@ msgstr "Preço do fornecedor" msgid "Variant Part" msgstr "Peça Variante" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "Editar ordem de compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "Adicionar Ordem de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "Referencia do fornecedor" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "Itens de Linha Concluídos" @@ -5269,91 +5354,91 @@ msgstr "Itens de Linha Concluídos" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "Moeda do pedido" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "Custo Total" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "Criado em" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Detalhes do pedido" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Ações do Pedido" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Referência do Cliente" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "Editar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "Novo Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5361,15 +5446,15 @@ msgstr "" msgid "Customers" msgstr "Clientes" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Envios concluídos" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "Editar Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5379,92 +5464,92 @@ msgstr "Novo Pedido de Venda" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "Localização Parente" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "Sub-locais" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "Externos" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "Tipo de Localização" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "Local de estoque de alto nível" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "Detalhes da localização" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "Peças padrão" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "Editar Local de Estoque" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "Editar Local de Estoque" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "Ações do item" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "Ações para itens de estoque nesta localização" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "Ações para localizações Filhas" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "Ação para locais filhos nesta localização" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "Ações de localização" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Peça Base" @@ -5476,11 +5561,11 @@ msgstr "Peça Base" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "Instalado em" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "Consumido por" @@ -5488,31 +5573,37 @@ msgstr "Consumido por" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "Ordem de Produção" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "Detalhes de Estoque" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Rastreamento de Estoque" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Dados de teste" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Itens instalados" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Itens Filhos" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Editar Item do Estoque" @@ -5520,38 +5611,38 @@ msgstr "Editar Item do Estoque" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "Excluir Item de Estoque" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Operações de Stock" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Contar Estoque" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Adicionar estoque" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Remover Estoque" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Transferir" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Transferir Estoque" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "Ações do Item do Estoque" @@ -5668,28 +5759,28 @@ msgid "Clear Filters" msgstr "Limpar Filtros" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Nenhum registo encontrado" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "O servidor retornou dados incorretos" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Pedido inválido" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Não autorizado" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Proibido" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Não encontrado" @@ -5697,18 +5788,14 @@ msgstr "Não encontrado" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "Esta ação não pode ser desfeita!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5717,6 +5804,10 @@ msgstr "Esta ação não pode ser desfeita!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "Esta ação não pode ser desfeita!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5726,20 +5817,20 @@ msgstr "Esta ação não pode ser desfeita!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Ações de código de barras" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Remover registos selecionados" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Atualizar dados" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Filtros de tabela" @@ -6561,7 +6652,7 @@ msgstr "Arquivo do Provedor" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Embutido" @@ -7138,7 +7229,7 @@ msgstr "Ativar Extensão" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Desativar" @@ -7146,7 +7237,7 @@ msgstr "Desativar" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Ativar" @@ -7174,75 +7265,75 @@ msgstr "Ativar" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "Desinstalar" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "Instalar extensão" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "Instalar" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "A extensão foi instalada com sucesso." -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "Desintalar extensão" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "Confirmar instalação da extensão" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "A extensão selecionada será desinstalada." -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "Esta ação não pode ser desfeita." -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "A extensão foi desinstalada com sucesso" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "Excluir Extensão" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 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?" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "Extensões recarregadas" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "As Extensões foram recarregadas com sucesso" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "Recarregar extensões" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "Instalar Extensão" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "Detalhe da Extensão" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Amostra" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Instalado" @@ -7783,10 +7874,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7873,8 +7960,12 @@ msgid "Filter by stock status" msgstr "Filtrar por estado do estoque" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" -msgstr "Mostrar estoque de peças montadas" +msgid "Show stock for assembled parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" diff --git a/src/frontend/src/locales/pt_BR/messages.po b/src/frontend/src/locales/pt_BR/messages.po index 909512fa32..d6eb901279 100644 --- a/src/frontend/src/locales/pt_BR/messages.po +++ b/src/frontend/src/locales/pt_BR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-10 00:20\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Impressão de etiqueta finalizada com sucesso" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Remover imagem associada a este item?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Remover" @@ -188,7 +188,6 @@ msgstr "Limpar" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Enviar" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Existem erros para um ou mais campos de formulário" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Atualizar" @@ -437,7 +436,7 @@ msgstr "Atualizar" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Excluir" @@ -498,6 +497,7 @@ msgstr "Ou continue com outros métodos" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Nome de usuário" @@ -608,9 +608,10 @@ msgstr "Servidor" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "Ícones {0}" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Buscar" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Leia Mais" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Erro desconhecido" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "Selecione Nível de Correção de Erro" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Link" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Fechar o modal" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Servidor" @@ -1267,7 +1268,7 @@ msgstr "Configurações de conta" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Configurações do Sistema" @@ -1286,7 +1287,7 @@ msgstr "Alterar o modo de cor" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Centro de Administração" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Páginas" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Extensões" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Sobre" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Nenhum resultado" msgid "No results available for search query" msgstr "Não há resultados disponíveis para a pesquisa" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Modelo desconhecido: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Modelo desconhecido: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Modelo desconhecido: {model}" msgid "Part" msgstr "Peça" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Peças" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Modelo de Parâmetro de Peça" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Modelos de Parâmetro de Peça" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Modelo de Teste de Peça" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Teste de Modelos de Peças" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Fornecedor da Peça" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Peças do Fornecedor" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Fabricante da peça" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Peças do Fabricante" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Categoria da Peça" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Categorias de Peça" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Item de estoque" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Itens de Estoque" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Localização do estoque" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Locais de estoque" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "Categoria de Localização de Estoque" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Categoria de Localização de Estoque" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Histórico de estoque" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "Ondem de Produção" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Históricos de estoque" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Produzir" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Compilações" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "Linha de Produção" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "Linhas de Produção" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "Criar item" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "Criar itens" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Empresa" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Empresas" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Empresa" msgid "Project Code" msgstr "Código do Projeto" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Códigos de Projeto" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Pedido de Compra" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Pedidos de compra" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Linha do Pedido de Compra" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Linhas do Pedido de Compra" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Pedido de Venda" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Pedidos de vendas" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Envio do Pedido Venda" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Envios do Pedido Venda" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Pedido de Devolução" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Pedidos de Devolução" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "Devolver item do pedido" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "Devolver item do pedido" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Endereço" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Endereços" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Contato" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Contatos" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Proprietário" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Proprietários" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Usuário" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Grupo" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "Importar Sessão" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "Modelo de Etiqueta" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "Modelo de Relatório" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Configuração de Plugin" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "Categoria de conteúdo" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "Modelo Desconhecido" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Peças" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Modelos de Parâmetro de Peça" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Teste de Modelos de Peças" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Peças do Fornecedor" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Peças do Fabricante" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Categorias de Peça" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Itens de Estoque" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Locais de estoque" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "Categoria de Localização de Estoque" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Históricos de estoque" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Ordens de Produções" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "Linhas de Produção" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "Criar itens" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Empresas" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Códigos de Projeto" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Pedidos de compra" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Pedidos de vendas" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Envios do Pedido Venda" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Pedidos de Devolução" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "Devolver item do pedido" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Endereços" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Contatos" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Proprietários" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Usuários" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Grupo" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Grupos" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "Importar Sessão" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "Importar Sessões" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "Modelo de Etiqueta" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "Modelos de Etiqueta" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "Modelo de Relatório" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "Modelos de Relatório" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Configuração de Plugin" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Configurações de Plugins" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "Categoria de conteúdo" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "Categorias de conteúdo" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "Modelos Desconhecidos" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Remessa" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inativo" @@ -1795,17 +1802,17 @@ msgstr "Sem Estoque" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Estoque" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Número de Série" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "Nenhuma configuração especificada" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "Nenhuma configuração especificada" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Configurações de tela" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Modo de cores" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Idioma" @@ -2420,7 +2419,7 @@ msgstr "Início" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Painel de Controle" @@ -2548,7 +2547,7 @@ msgstr "Notícias Atuais" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Página Web" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demonstração" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Produzir" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Comprando" @@ -2579,9 +2573,9 @@ msgstr "Comprando" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Vendas" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "Remover linhas" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "Local de Origem" @@ -2917,7 +2911,7 @@ msgstr "Adicionar observação" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "Armazenar com estoque já recebido" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "Número de série" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "Embalagem" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Estado" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "Anotação" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "Código (SKU)" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Insira o número de série para novo estoque (ou deixe em branco)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "Situação do Estoque" @@ -3048,7 +3042,7 @@ msgstr "Situação do Estoque" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "Mover para o local padrão" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Em Estoque" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Mover" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Adicionar" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Contar" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "Remover Estoque" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Transferir Estoque" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Contar Estoque" @@ -3610,17 +3608,46 @@ msgstr "Não está escaneando" msgid "Select Camera" msgstr "Selecionar Camera" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Detalhes da Conta" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Primeiro nome" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Sobrenome" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,16 +3658,29 @@ msgstr "Sobrenome" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Primeiro nome:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Sobrenome:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Usar pseudo-idioma" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "Nenhuma ficha configurada" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "Nenhuma ficha configurada" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "Visto pela Última Vez" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "barras" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "oval" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "pontos" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Tema" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Cor primária" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Usar pseudo-idioma" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Cor branca" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Cor preta" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Raio da borda" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Carregador" @@ -3838,19 +3902,19 @@ msgstr "Última busca" msgid "Base currency" msgstr "Moeda base" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "Importador de dados" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Tarefas de segundo plano" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Relatórios de Erro" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Moedas" @@ -3858,20 +3922,21 @@ msgstr "Moedas" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "Estados personalizados" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Unidades personalizadas" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Parâmetros da Peça" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Parâmetros de Categoria" @@ -3879,24 +3944,24 @@ msgstr "Parâmetros de Categoria" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "Tipo de Localização" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Máquinas" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Ações Rápidas" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Adicionar novo usuário" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Opções Avançadas" @@ -3912,19 +3977,19 @@ msgstr "Pilha de Erros da Máquina" msgid "There are no machine registry errors." msgstr "Não há registro de erros da máquina." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Info" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "Extensões externas não estão ativados para esta instalação do InvenTree." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "Extensões externas não estão ativados para esta instalação do InvenTree." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "Extensões externas não estão ativados para esta instalação do Inven #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Erros de plugin" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Configurações da Extensão" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Erros de plugin" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "Tamanho da página" @@ -4017,6 +4082,18 @@ msgstr "Tarefas com Falhas" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Selecione as configurações relevantes para o ciclo de vida dos usuários. Mais informações disponíveis em" @@ -4025,15 +4102,15 @@ msgstr "Selecione as configurações relevantes para o ciclo de vida dos usuári msgid "System settings" msgstr "Configurações do sistema" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Entrar" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Códigos de barras" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Preços" @@ -4045,41 +4122,49 @@ msgstr "Preços" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Etiquetas" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Relatórios" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Balanço" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Ordens de Produções" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Mudar para Configuração de Usuário" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Conta" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Segurança" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Opções de exibição" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Configurações de Conta" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Mudar para Configuração do Sistema" @@ -4115,8 +4200,8 @@ msgstr "Marcar como não lido" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Marcar como não lido" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Referência" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "Referência" msgid "Description" msgstr "Descrição" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "Produção Pai" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Quantidade de Produção" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Saídas Completas" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Emitido por" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "Emitido por" msgid "Responsible" msgstr "Responsável" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Criado" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Data Prevista" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "Concluído" @@ -4229,7 +4314,7 @@ msgstr "Concluído" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "Qualquer local" @@ -4237,7 +4322,7 @@ msgstr "Qualquer local" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "Local de Destino" @@ -4253,69 +4338,69 @@ msgstr "Local de Destino" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Detalhes da Produção" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Itens de linha" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Saídas Incompletas" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "Estoque Alocado" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Estoque Consumido" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Pedido de Produção Filhos" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Resultados do teste" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "Estatísticas do teste" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Anexos" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Anotações" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Editar Pedido de Produção" @@ -4333,126 +4418,126 @@ msgstr "Editar Pedido de Produção" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Adicionar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "Cancelar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "Pedido cancelado" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "Cancelar este pedido" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "Manter Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "Colocar este pedido em espera" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "Colocar este pedido em espera" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "Pedido colocado em espera" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "Pedido de produção vencido" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "Cancelar este pedido" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "Cancelar este pedido" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "Problemas com o pedido" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "Completar Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "Marcar este pedido como completo" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "Pedido concluído" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "Emitir Pedido" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "Completar Pedido" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Ações do Pedido de Produção" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "Editar pedido" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "Duplicar pedido" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "Manter ordem" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "Cancelar pedido" @@ -4464,24 +4549,24 @@ msgstr "Cancelar pedido" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "Número de telefone" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "Endereço de e-mail" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "Moeda Padrão" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "Moeda Padrão" msgid "Supplier" msgstr "Fornecedor" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Fabricante" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "Fabricante" msgid "Customer" msgstr "Cliente" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Detalhes" @@ -4520,11 +4605,11 @@ msgstr "Detalhes" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Peças Fabricadas" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Peças Fornecidas" @@ -4532,84 +4617,84 @@ msgstr "Peças Fornecidas" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Estoque Atribuído" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Editar Empresa" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "Excluir Empresa" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "Ações da Empresa" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "Peça Interna" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "Link Externo" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "Número de Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "Detalhes do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "Detalhes de peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parâmetros" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Fornecedores" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "Editar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "Adicionar Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "Excluir Peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "Ações de peça do Fabricante" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "Peça do Fabricante" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "Peça do Fabricante" msgid "Pack Quantity" msgstr "Quantidade de embalagens" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "Disponibilidade do fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "Disponibilidade Atualizada" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "Disponibilidade" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "Detalhes de Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Estoque Recebido" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "Preço do fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "Ações de Peças do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Editar Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Excluir Peça do Fornecedor" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Adicionar Peça do Fornecedor" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Caminho" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "Categoria Pai" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "Sub-categorias" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Estrutural" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "Localização padrão do pai" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "Local Padrão" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "Categoria de peça de nível superior" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "Editar Categoria da Peça" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "Apagar items" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "Excluir Categoria de Peça" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "Ações da Peça" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "Ação para peças nesta categoria" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "Ação de Categorias Filhas" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "Ação para categorias filhas desta categoria" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "Ações de Categoria" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "Detalhes da categoria" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "Variante de" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "Revisão" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Revisão" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Categoria" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "Local Padrão" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "Localização padrão da categoria" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Unidades" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Palavras-chave" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "Palavras-chave" msgid "Available Stock" msgstr "Estoque Disponível" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "Estoque de variante" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "Estoque Mínimo" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "No pedido" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "Necessário para Pedidos" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "Alocado para Pedidos de Construção" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "Alocado para Pedidos de Venda" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Pode Produzir" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "Em Produção" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "Bloqueado" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "Modelo de peça" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Peça Montada" @@ -4846,7 +4931,7 @@ msgstr "Peça Montada" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "Parte do componente" @@ -4854,114 +4939,114 @@ msgstr "Parte do componente" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "Parte Testável" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "Peça Rastreável" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "Parte comprável" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "Parte vendível" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "Parte Virtual" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Criado em" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Criado por" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Fornecedor Padrão" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Faixa de Preço" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Último Balanço" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Inventário por" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Detalhes da Peça" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Variantes" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Alocações" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Alocações de Pedido de Produção" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Alocações do Pedido de Vendas" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Lista de Materiais" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Usado em" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Preço de Peça" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Fabricantes" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Agendamento" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Testar Modelos" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Peças Relacionadas" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "Peças Relacionadas" msgid "Available" msgstr "Disponível" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "Sem Estoque" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "Obrigatório" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "No pedido" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Editar Peça" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "Adicionar Parte" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "Excluir Peça" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "Excluir esta peça não é reversível" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Ações de Estoque" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Contagem do estoque" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Transferir estoque de peça" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Ações da Peça" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "Selecionar Revisão de Parte" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "Precificação Geral" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "Última Atualização" @@ -5242,23 +5327,23 @@ msgstr "Preço do fornecedor" msgid "Variant Part" msgstr "Peça Variante" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "Editar Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "Adicionar Ordem de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "Referencia do fornecedor" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "Itens de Linha Concluídos" @@ -5268,91 +5353,91 @@ msgstr "Itens de Linha Concluídos" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "Moeda do pedido" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "Custo Total" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "Criado em" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Detalhes do pedido" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "Itens de linha extra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "Emitir Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "Cancelar Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "Reter pedido de compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "Concluir Pedido de Compra" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Ações de Pedido" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Referência do Cliente" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "Editar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "Adicionar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "Emitir Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "Cancelar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "Pedido cancelado" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "Adicionar Pedido de Devolução" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "Completar Pedido de Devolução" @@ -5360,15 +5445,15 @@ msgstr "Completar Pedido de Devolução" msgid "Customers" msgstr "Clientes" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Envios Concluídos" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "Editar Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "Adicionar Pedido de Vendas" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "Envios" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "Emitir Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "Cancelar Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "Adicionar Pedido de Vendas" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "Concluir Pedido de Venda" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "Ordem de envio" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "Localização Pai" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "Sub-locais" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "Externo" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "Tipo de Localização" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "Local de estoque de alto nível" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "Detalhes da localização" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "Peças Padrão" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "Editar Local de Estoque" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "Excluir Local de Estoque" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "Ação do Item" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "Ação de itens de estoque neste local de estoque" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "Ações de Localizações Filhas" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "Ação para localizações filhas deste local" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "Ações de Localização" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Peça base" @@ -5475,11 +5560,11 @@ msgstr "Peça base" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "Instalado em" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "Consumido por" @@ -5487,31 +5572,37 @@ msgstr "Consumido por" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "Ondem de Produção" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "Detalhes do Estoque" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Rastreamento de Estoque" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Dados de Teste" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Itens Instalados" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Itens Filhos" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Editar Item do Estoque" @@ -5519,38 +5610,38 @@ msgstr "Editar Item do Estoque" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "Excluir Item de Estoque" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Operações de Estoque" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Contagem de estoque" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Adicionar estoque" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Remover estoque" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Transferir" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Transferir estoque" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "Ações de Estoque" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Limpar Filtros" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Nenhum registro encontrado" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "O servidor retornou um tipo de dado incorreto" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Requisição inválida" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Não autorizado" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Proibido" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Não encontrado" @@ -5696,18 +5787,14 @@ msgstr "Não encontrado" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "Essa ação não pode ser desfeita!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "Essa ação não pode ser desfeita!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "Essa ação não pode ser desfeita!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "Essa ação não pode ser desfeita!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Ações de código de barras" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Remover registros selecionados" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Atualizar dados" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Filtros da Tabela" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Embutido" @@ -7137,7 +7228,7 @@ msgstr "Ativar Plugin" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Desativar" @@ -7145,7 +7236,7 @@ msgstr "Desativar" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Ativar" @@ -7173,75 +7264,75 @@ msgstr "Ativar" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "Desinstalar" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "Instalar plugin" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "Instalar" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "Plugin instalado com sucesso" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "Desinstalar extensões" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "Confirmar desinstalação de extensão" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "A extensão selecionada será desinstalada." -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "Essa ação não pode ser desfeita." -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "Extensão desinstalada com sucesso" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "Deletar extensão" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "Excluindo esta configuração de extensão irá remover todas as configurações e dados associados. Tem certeza de que deseja excluir esta extensão?" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "Plugins recarregados" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "Plugins foram recarregados com sucesso" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "Recarregar plugins" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "Instalar Plugin" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "Detalhes da extensão" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Amostra" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Instalado" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,8 +7959,12 @@ msgid "Filter by stock status" msgstr "Filtrar por estado do estoque" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" -msgstr "Mostrar estoque para peças montadas" +msgid "Show stock for assembled parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" diff --git a/src/frontend/src/locales/ro/messages.po b/src/frontend/src/locales/ro/messages.po index 192b61377d..e66b74953b 100644 --- a/src/frontend/src/locales/ro/messages.po +++ b/src/frontend/src/locales/ro/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ro\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/ru/messages.po b/src/frontend/src/locales/ru/messages.po index 12a475adb4..c3a80c2801 100644 --- a/src/frontend/src/locales/ru/messages.po +++ b/src/frontend/src/locales/ru/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ru\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \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" @@ -70,7 +70,7 @@ msgstr "Печать этикеток успешно завершена" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Удалить связанное изображение?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Удалить" @@ -188,7 +188,6 @@ msgstr "Очистить" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Подтвердить" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Обновить" @@ -437,7 +436,7 @@ msgstr "Обновить" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Удалить" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Имя пользователя" @@ -608,9 +608,10 @@ msgstr "Узел" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Поиск" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Подробнее" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Неизвестная ошибка" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Ссылка" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Закрыть модальное окно" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "Настройки аккаунта" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Страницы" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Плагины" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "О проекте" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Нет результатов" msgid "No results available for search query" msgstr "Нет доступных результатов для поискового запроса" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Неизвестная модель: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Неизвестная модель: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Неизвестная модель: {model}" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Детали" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Детали поставщиков" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Детали производителей" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Категория детали" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Категории деталей" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "На складе" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Складские позиции" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Места хранения" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Сборка" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Компании" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Заказы на закупку" + +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Заказы на продажу" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Заказы на возврат" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Детали" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Детали поставщиков" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Детали производителей" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Категории деталей" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Складские позиции" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Места хранения" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Заказы на сборку" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Компании" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Заказы на закупку" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Заказы на продажу" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Заказы на возврат" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Неактивный" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Остатки" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "Домашняя страница" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Контрольная панель" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Веб-сайт" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Демо" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Сборка" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Покупка" @@ -2579,9 +2573,9 @@ msgstr "Покупка" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Продажи" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "В наличии" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "Удалить запасы" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Перемещение запасов" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Подсчет остатков" @@ -3610,16 +3608,45 @@ msgstr "Не сканировать" msgid "Select Camera" msgstr "Выбрать камеру" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Специальная единица" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Заказы на сборку" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "Описание" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Подробности сборки" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "Внешняя ссылка" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "Родительская категория" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "Категория детали верхнего уровня" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "Добавить категорию детали" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "Удалить категорию детали" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Ревизия" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Категория" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Ед. изм" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "Заблокировано" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Ценовой диапазон" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/sk/messages.po b/src/frontend/src/locales/sk/messages.po index 01599de253..89b3f2e813 100644 --- a/src/frontend/src/locales/sk/messages.po +++ b/src/frontend/src/locales/sk/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sk\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/sl/messages.po b/src/frontend/src/locales/sl/messages.po index 520ace12cf..4f2f923845 100644 --- a/src/frontend/src/locales/sl/messages.po +++ b/src/frontend/src/locales/sl/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sl\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \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" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/sr/messages.po b/src/frontend/src/locales/sr/messages.po index 075b13dd47..8b91b41f0b 100644 --- a/src/frontend/src/locales/sr/messages.po +++ b/src/frontend/src/locales/sr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sr\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \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" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Podnesi" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Obnovi" @@ -437,7 +436,7 @@ msgstr "Obnovi" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Obriši" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Korisničko ime" @@ -608,9 +608,10 @@ msgstr "Host" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Pretraga" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Saznaj više" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Nepoznata greška" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/sv/messages.po b/src/frontend/src/locales/sv/messages.po index 8f78c7d947..8cbdff04d5 100644 --- a/src/frontend/src/locales/sv/messages.po +++ b/src/frontend/src/locales/sv/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sv\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Utskrift av etiketter lyckades" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Vill du ta bort den associerade bilden från denna artikel?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Ta bort" @@ -188,7 +188,6 @@ msgstr "Rensa" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Skicka" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Fel finns för ett eller flera formulärfält" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Uppdatera" @@ -437,7 +436,7 @@ msgstr "Uppdatera" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Radera" @@ -498,6 +497,7 @@ msgstr "Eller fortsätt med andra metoder" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Användarnamn" @@ -608,9 +608,10 @@ msgstr "Värd" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "{0} ikoner" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Sök" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Läs mer" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Okänt fel" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "Välj felkorrigeringsnivå" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Länk" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Stäng fönstret" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Server" @@ -1267,7 +1268,7 @@ msgstr "Kontoinställningar" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Systeminställningar" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Admin-center" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Sidor" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Plugins" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Om" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Inga resultat" msgid "No results available for search query" msgstr "Inga resultat tillgängliga för sökfrågan" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Okänd modell: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Okänd modell: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Okänd modell: {model}" msgid "Part" msgstr "Artkel" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Artiklar" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Parametermall för Artiklar" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Parametermallar för Artiklar" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Testmall för artikel" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Testmall för artiklar" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Leverantörsartikel" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Leverantörsartikel" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Tillverkarens artiklar" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Tillverkarens artiklar" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Artikel Kategori" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Artikelkategorier" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Lager artikel" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Artikel i lager" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Lagerplats" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Lagerplats" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "Lagerplatstyper" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Lagerplatstyper" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Lagerhistorik" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Lagerhistorik" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Bygg" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Tillverkningar" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "Tillverknings rad" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "Tillverknings rader" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "Tillverknings artikel" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "Tillverknings artiklar" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Företag" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Företag" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Företag" msgid "Project Code" msgstr "Projektkod" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Projektkoder" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Inköpsorder" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Inköpsorder" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Inköpsorderrad" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Inköpsorderrader" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Försäljningsorder" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Försäljningsorder" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Försäljningsorder leverans" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Försäljningsorder leveranser" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Returorder" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Returorder" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "Rad för returorder" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "Rad för returordrar" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adress" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adresser" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Kontakt" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Kontakter" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Ägare" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Ägare" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Användare" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Grupp" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "Etikettmall" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "Rapportmall" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Plugin-konfiguration" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Artiklar" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Parametermallar för Artiklar" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Testmall för artiklar" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Leverantörsartikel" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Tillverkarens artiklar" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Artikelkategorier" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Artikel i lager" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Lagerplats" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "Lagerplatstyper" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Lagerhistorik" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Byggordrar" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "Tillverknings rader" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "Tillverknings artiklar" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Företag" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Projektkoder" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Inköpsorder" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Försäljningsorder" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Försäljningsorder leveranser" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Returorder" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "Rad för returordrar" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adresser" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Kontakter" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Ägare" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Användare" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Grupp" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Grupper" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "Etikettmall" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "Etikettmallar" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "Rapportmall" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "Rapportmallar" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Plugin-konfiguration" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Plugin-konfigurationer" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Frakt" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "Inaktiv" @@ -1795,17 +1802,17 @@ msgstr "Inget på lager" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Lagersaldo" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Serienummer" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "Inga inställningar angivna" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "Inga inställningar angivna" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Visningsinställningar" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Färgläge" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Språk" @@ -2420,7 +2419,7 @@ msgstr "Hem" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Kontrollpanel" @@ -2548,7 +2547,7 @@ msgstr "Aktuella nyheter" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Webbplats" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Bygg" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Inköp" @@ -2579,9 +2573,9 @@ msgstr "Inköp" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Försäljning" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Status" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,17 +3608,46 @@ msgstr "Starta skanning" msgid "Select Camera" msgstr "Välj kamera" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Kontouppgifter" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "Användaråtgärder" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "Redigera användare" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Förnamn" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "Ställ in lösenord" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Efternamn" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,15 +3658,28 @@ msgstr "Efternamn" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Förnamn:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Efternamn:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "Förnamn" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "Efternamn" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "oval" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "punkt" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Tema" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Primärfärg" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Vitfärg" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Svart färg" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Gränsradie" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Lastare" @@ -3836,21 +3900,21 @@ msgstr "" #: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:100 msgid "Base currency" -msgstr "" +msgstr "Basvaluta" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Valutor" @@ -3858,20 +3922,21 @@ msgstr "Valutor" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" -msgstr "" +msgstr "Snabbåtgärder" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Lägg till en ny användare" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,17 +3998,17 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" -msgstr "" +msgstr "Sidstorlek" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:20 msgid "Landscape" @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Logga in" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Streckkoder" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Prissättning" @@ -4045,41 +4122,49 @@ msgstr "Prissättning" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Etiketter" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Rapportering" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Inventering" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Byggordrar" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Växla till användarinställningar" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Konto" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Säkerhet" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Visningsalternativ" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Kontoinställningar" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Växla till systeminställning" @@ -4115,8 +4200,8 @@ msgstr "Markera som oläst" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Markera som oläst" msgid "IPN" msgstr "IAN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Referens" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "Referens" msgid "Description" msgstr "Beskrivning" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "Föregående tillverkning" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Tillverkat antal" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Slutförd produktion" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Utfärdad av" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "Utfärdad av" msgid "Responsible" msgstr "Ansvarig" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Skapad" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Färdigdatum" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "Slutförd" @@ -4229,7 +4314,7 @@ msgstr "Slutförd" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "Alla platser" @@ -4237,7 +4322,7 @@ msgstr "Alla platser" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "Destinationsplats" @@ -4253,69 +4338,69 @@ msgstr "Destinationsplats" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Tillverknings Detaljer" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Radartiklar" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Ofullständig produktion" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "Allokerat lager" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Förbrukat lager" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Underordnad tillverknings order" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Test resultat" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "Test statistik" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Bilagor" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Anteckningar" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Redigera Tillverknings order" @@ -4333,126 +4418,126 @@ msgstr "Redigera Tillverknings order" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Lägg till Tillverknings order" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "Avbryt Tillverknings order" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "Order avbruten" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "Avbryt denna order" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "Pausa denna order" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "Pausa denna order" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "Ordern är pausad" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "Utfärda tillverknings order" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "Utfärda denna order" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "Utfärda denna order" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "Order utfärdad" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "Slutför tillverknings order" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "Markera denna order som slutförd" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "Order slutförd" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "Utfärda Order" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "Slutför Order" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Åtgärder Tillverknings order" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "Redigera order" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "Duplicera order" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "Pausa order" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "Avbryt order" @@ -4464,24 +4549,24 @@ msgstr "Avbryt order" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "Telefonnummer" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "E-postadress" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "Standardvaluta" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "Standardvaluta" msgid "Supplier" msgstr "Leverantör" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Tillverkare" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "Tillverkare" msgid "Customer" msgstr "Kund" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Detaljer" @@ -4520,11 +4605,11 @@ msgstr "Detaljer" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Tillverkarens artiklar" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Leverantörsartiklar" @@ -4532,84 +4617,84 @@ msgstr "Leverantörsartiklar" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Tilldelad Lager" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Redigera företag" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "Radera företag" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parametrar" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Kategori" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Enheter" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "Tillgängligt lager" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "På order" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Kan tillverkas" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "Under produktion" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "Låst" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "Mall artikel" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Sammansatt artikel" @@ -4846,7 +4931,7 @@ msgstr "Sammansatt artikel" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "Komponent artikel" @@ -4854,114 +4939,114 @@ msgstr "Komponent artikel" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "Testbar artikel" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "Spårbar artikel" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "Köpartikel" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "Försäljningsbar artikel" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "Virtuell artikel" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Skapad Datum" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Skapad av" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Standardleverantör" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Prisintervall" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Senaste inventering" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Inventerad av" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Artikel Detaljer" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Varianter" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Allokeringar" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Tillverknings orderallokeringar" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Försäljningsorder allokeringar" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Stycklista" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Används i" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Prissättning för artikel" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Tillverkare" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Schemaläggning" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Testmall" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Relaterade artiklar" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "Relaterade artiklar" msgid "Available" msgstr "Tillgänglig" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "Inget på lager" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "På order" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Redigera artikel" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "Lägg till artikel" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "Ta bort artikel" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "Borttagning av denna artikel kan inte återställas" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Lager åtgärder" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Räkna artikellager" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Överför artikellager" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Artikel åtgärder" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "Välj artikel revision" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "Slutför returorder" @@ -5360,15 +5445,15 @@ msgstr "Slutför returorder" msgid "Customers" msgstr "Kunder" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Slutförda leveranser" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "Redigera försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "Ny försäljningsorder" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "Leveranser" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "Avbryt försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "Pausa försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "Slutför försäljningsorder" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "Leveransorder" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "Föregående Plats" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "Underplaceringar" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "Extern" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "Typ av plats" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "Högsta nivå lagerplats" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "Platsuppgifter" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "Standard artiklar" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "Redigera lagerplats" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "Radera lagerplats" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "Platsåtgärder" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Rensa filter" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Inga resultat hittades" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Felaktig begäran" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Ej behörig" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Otillåten" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Hittades inte" @@ -5696,18 +5787,14 @@ msgstr "Hittades inte" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Streckkods åtgärder" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Uppdatera data" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Tabellfilter" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/th/messages.po b/src/frontend/src/locales/th/messages.po index 647a1c6359..f7690cc798 100644 --- a/src/frontend/src/locales/th/messages.po +++ b/src/frontend/src/locales/th/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: th\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/tr/messages.po b/src/frontend/src/locales/tr/messages.po index 2aea5d6d5a..52bd4c5d5f 100644 --- a/src/frontend/src/locales/tr/messages.po +++ b/src/frontend/src/locales/tr/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: tr\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-10 18:16\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgstr "Etiket yazdırma başarıyla tamamlandı" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Bu ögeyle ilişkilendirilmiş resim kaldırılsın mı?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Kaldır" @@ -188,7 +188,6 @@ msgstr "Temizle" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Gönder" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Bir veya daha fazla form alanında hatalar var" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Güncelle" @@ -437,7 +436,7 @@ msgstr "Güncelle" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Sil" @@ -498,6 +497,7 @@ msgstr "Veya başka yöntemlerle devam edin" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Kullanıcı Adı" @@ -608,9 +608,10 @@ msgstr "Sunucu" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "{0} simge" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Ara" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Devamını Oku" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Bilinmeyen hata" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "Hata Düzeltme Düzeyini Seçin" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Bağlantı" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Pencereyi kapat" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Sunucu" @@ -1267,7 +1268,7 @@ msgstr "Hesap ayarları" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Sistem Ayarları" @@ -1286,7 +1287,7 @@ msgstr "Renk Kipini Değiştir" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Yönetici Merkezi" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Sayfalar" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Eklentiler" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Hakkında" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Sonuç yok" msgid "No results available for search query" msgstr "Arama sorgusu için sonuç yok" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Bilinmeyen model: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Bilinmeyen model: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Bilinmeyen model: {model}" msgid "Part" msgstr "Parça" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Parçalar" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Parça Parametre Şablonu" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Parça Parametre Şablonları" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "Parça Test Şablonu" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "Parça Test Şablonları" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Sağlayıcı Parçası" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Tedarikçi Parçaları" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Üretici Parçası" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Üretici Parçaları" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Parça Sınıfı" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Parça Kategorileri" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Stok Ögesi" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Stok Kalemleri" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Stok Konumu" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Stok Konumları" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "Stok Konum Türü" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "Stok Konum Türleri" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "Stok Geçmişi" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "Yapım Siparişi" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "Stok Geçmişleri" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Yap" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Yapılar" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "Yapı Satırı" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "Yapı Satırları" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "Yapı Ögesi" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "Yapı Ögeleri" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Şirket" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Şirketler" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Şirket" msgid "Project Code" msgstr "Proje Kodu" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Proje Kodları" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Satın Alma Siparişi" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Satın Alma Emirleri" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "Satın Alma Sipariş Satırı" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "Satın Alma Sipariş Satırları" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Satış Siparişi" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Satış Emirleri" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Satış Siparişi Gönderisi" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Satış Siparişi Gönderileri" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "İade Emri" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "İade Emirleri" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "İade Emri Satır Ögesi" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "İade Emri Satır Ögeleri" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Adres" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Adresler" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Bağlantı" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Bağlantılar" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Sahip" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Sahipler" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Kullanıcı" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Grup" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "Oturumu İçe Aktar" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "Etiket Şablonu" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "Rapor Şablonu" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Eklenti Yapılandırma" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "İçerik Türü" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Parçalar" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Parça Parametre Şablonları" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "Parça Test Şablonları" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Tedarikçi Parçaları" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Üretici Parçaları" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Parça Kategorileri" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Stok Kalemleri" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Stok Konumları" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "Stok Konum Türleri" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "Stok Geçmişleri" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Yapım İşi Emirleri" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "Yapı Satırları" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "Yapı Ögeleri" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Şirketler" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Proje Kodları" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Satın Alma Emirleri" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Satış Emirleri" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Satış Siparişi Gönderileri" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "İade Emirleri" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "İade Emri Satır Ögeleri" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Adresler" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Bağlantılar" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Sahipler" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Kullanıcılar" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Grup" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Gruplar" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "Oturumu İçe Aktar" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "Oturumları İçe Aktar" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "Etiket Şablonu" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "Etiket Şablonları" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "Rapor Şablonu" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "Rapor Şablonları" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Eklenti Yapılandırma" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Eklenti Yapılandırmaları" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "İçerik Türü" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "İçerik Türleri" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Gönderi" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "İnaktif" @@ -1795,17 +1802,17 @@ msgstr "Stok yok" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Stok" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Seri Numarası" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "Ayar belirtilmemiş" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "Ayar belirtilmemiş" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Görüntü Ayarları" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Renk Modu" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Dil" @@ -2420,7 +2419,7 @@ msgstr "Ana Sayfa" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Panel" @@ -2484,7 +2483,7 @@ msgstr "Son Parçalar" #: src/defaults/dashboardItems.tsx:36 msgid "BOM Waiting Validation" -msgstr "BOM Doğrulama Bekliyor" +msgstr "ML Doğrulama Bekliyor" #: src/defaults/dashboardItems.tsx:43 msgid "Recently Updated" @@ -2548,7 +2547,7 @@ msgstr "Güncel Haberler" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Web Sitesi" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Yap" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Satın Alınıyor" @@ -2579,9 +2573,9 @@ msgstr "Satın Alınıyor" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Satışlar" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "Kaynak Konum" @@ -2917,7 +2911,7 @@ msgstr "Note Ekle" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "Önceden alınmış bir stok ile depola" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "Seri numaraları" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "Paketleme" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Durum" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "Not" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "SKU" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Yeni stok için seri numaralarını girin (veya boş bırakın)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "Stok Durumu" @@ -3048,7 +3042,7 @@ msgstr "Stok Durumu" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "Varsayılan konuma taşı" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Stokta" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Taşı" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Ekle" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Say" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "Stok Kaldır" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "Stoku Aktar" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "Stoku Say" @@ -3610,17 +3608,46 @@ msgstr "Taranmıyor" msgid "Select Camera" msgstr "Kamera Seç" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Hesap Ayrıntıları" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "Ad" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "Soyad" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,16 +3658,29 @@ msgstr "Soyad" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "Ad:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "Soyad:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Sahte dil kullanın" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "Süper Kullanıcı" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "Hiç jeton yapılandırılmadı" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "Hiç jeton yapılandırılmadı" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "Son Görülme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "çubuklar" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "oval" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "noktalar" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Tema" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Birincil renk" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Sahte dil kullanın" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Beyaz" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Siyah" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Kenarlık Yarıçapı" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Yükleyici" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "Veri İçe Aktarma" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "Arka Plan Görevleri" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "Hata Raporları" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "Para Birimleri" @@ -3858,20 +3922,21 @@ msgstr "Para Birimleri" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "Özel Durumlar" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "Özel Birimler" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Parça Parametreleri" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "Sınıf Parametreleri" @@ -3879,24 +3944,24 @@ msgstr "Sınıf Parametreleri" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "Konum Türleri" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "Makineler" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "Hızlı Eylemler" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "Yeni bir kullanıcı ekle" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "Gelişmiş Seçenekler" @@ -3912,19 +3977,19 @@ msgstr "Makine Hata Yığını" msgid "There are no machine registry errors." msgstr "Herhangi bir makine kayıt hatası yok." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "Bilgi" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "Bu InvenTree kurulumu için harici eklentiler etkinleştirilmedi." - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "Bu InvenTree kurulumu için harici eklentiler etkinleştirilmedi." + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "Bu InvenTree kurulumu için harici eklentiler etkinleştirilmedi." #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "Eklenti Hataları" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Eklenti Ayarları" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "Eklenti Hataları" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4017,6 +4082,18 @@ msgstr "Başarısız Görevler" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Kullanıcı yaşam döngüsüyle ilgili ayarları seçin. Daha fazlası şurada mevcut:" @@ -4025,15 +4102,15 @@ msgstr "Kullanıcı yaşam döngüsüyle ilgili ayarları seçin. Daha fazlası msgid "System settings" msgstr "Sistem ayarları" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Giriş" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Barkodlar" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Fiyatlandırma" @@ -4045,41 +4122,49 @@ msgstr "Fiyatlandırma" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Etiketler" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Raporlama" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Stok Sayımı" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Yapım İşi Emirleri" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Kullanıcı Ayarına Geç" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Hesap" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Güvenlik" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Görüntüleme Seçenekleri" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Hesap Ayarları" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Sistem Ayarına Geç" @@ -4115,8 +4200,8 @@ msgstr "Okunmadı olarak imle" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Okunmadı olarak imle" msgid "IPN" msgstr "DPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "Referans" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "Referans" msgid "Description" msgstr "Açıklama" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "Üst Yapı" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "Yapı Miktarı" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Tamamlanan Çıkışlar" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "Veren" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "Veren" msgid "Responsible" msgstr "Sorumlu" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "Oluşturuldu" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Hedef Tarih" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "Tamamlandı" @@ -4229,7 +4314,7 @@ msgstr "Tamamlandı" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "Herhangi bir konum" @@ -4237,7 +4322,7 @@ msgstr "Herhangi bir konum" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "Hedef Konum" @@ -4253,69 +4338,69 @@ msgstr "Hedef Konum" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Yapı Ayrıntıları" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Satır Ögeleri" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Tamamlanmayan Çıktılar" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "Ayrılan Stok" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Tüketilen Stok" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Alt Yapı Siparişleri" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "Test Sonuçları" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "Test İstatistikleri" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Ekler" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Notlar" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "Yapı Siparişini Düzenle" @@ -4333,126 +4418,126 @@ msgstr "Yapı Siparişini Düzenle" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "Yapı Siparişi Ekle" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "Yapı Siparişini İptal Et" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "Sipariş iptal edildi" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "Bu siparişi iptal et" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "Yapı Siparişini Beklet" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "Bu yapı siparişini beklemeye al" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "Bu yapı siparişini beklemeye al" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "Beklemeye alınan sipariş" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "Yapı Siparişi Ver" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "Bu siparişi ver" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "Bu siparişi ver" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "Sipariş verildi" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "Yapı Siparişini Tamamla" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "Bu siparişi tamamlandı olarak imle" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "Sipariş tamamlandı" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "Sipariş Ver" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "Siparişi Tamamla" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "Yapım Siprişi Eylemleri" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "Siparişi düzenle" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "Siparişi çoğalt" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "Siparişi beklet" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "Siparişi iptal et" @@ -4464,24 +4549,24 @@ msgstr "Siparişi iptal et" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "Telefon Numarası" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "E-posta Adresi" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "Varsayılan Para Birimi" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "Varsayılan Para Birimi" msgid "Supplier" msgstr "Sağlayıcı" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Üretici" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "Üretici" msgid "Customer" msgstr "Müşteri" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Ayrıntılar" @@ -4520,11 +4605,11 @@ msgstr "Ayrıntılar" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "Üretilen Parçalar" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "Sağlanan Parçalar" @@ -4532,84 +4617,84 @@ msgstr "Sağlanan Parçalar" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "Atanan Parçalar" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Şirketi Düzenle" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "Şirketi Sil" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "Şirket Eylemleri" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "Dahili Parça" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "Harici Bağlantı" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "Üretici Parça Numarası" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "Üretici Ayrıntıları" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "Üretici Parçası Ayrıntıları" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Parametreler" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Sağlayıcılar" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "Üretici Parçasını Düzenle" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "Üretici Parçası Ekle" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "Üretici Parçasını Sil" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "Üretici Parçası Eylemleri" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "Üretici Parçası" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,213 +4702,213 @@ msgstr "Üretici Parçası" msgid "Pack Quantity" msgstr "Paket Miktarı" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "Sağlayıcı Kullanılabilirliği" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "Kullanılabilirlik Güncellendi" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "Kullanılabilirlik" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "Sağlayıcı Parça Ayrıntıları" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "Alınan Stok" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "Sağlayıcı Fiyatlandırması" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "Sağlayıcı Parçası Eylemleri" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Sağlayıcı Parçasını Düzenle" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "Sağlayıcı Parçasını Sil" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Sağlayıcı Parçası Ekle" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Yol" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "Üst Sınıf" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "Alt sınıflar" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Yapısal" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "Varsayılan üst konum" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "Varsayılan konum" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "En üst düzey parça sınıfı" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "Parça Sınıfını Düzenle" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "Ögeleri sil" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "Parça Sınıfını Sil" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "Parçalar Eylemi" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "Bu sınıftaki parçalar için eylem" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "Alt Sınıflar Eylemi" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "Bu sınıftaki alt sınıflar için eylem" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "Sınıf Eylemleri" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "Sınıf Ayrıntıları" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "Şunun bir türü" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "Şunun revizyonu" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "Revizyon" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Kategori" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "Varsayılan Konum" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "Sınıfın Varsayılan Konumu" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Birim" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "Anahtar Sözcükler" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 #: src/tables/sales/SalesOrderLineItemTable.tsx:107 msgid "Available Stock" -msgstr "Kullanılabilir Stok" +msgstr "Mevcut Stok" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "Türev Stoku" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "Minimum Stok" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "Siparişte" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "Siparişler için Gerekli" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "Yapı Siparişlerine Ayrıldı" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "Satış Siparişlerine Ayrıldı" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "Yapılabilir" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "Üretimde" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "Kilitli" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "Şablon Parça" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "Birleştirilmiş Parça" @@ -4846,7 +4931,7 @@ msgstr "Birleştirilmiş Parça" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "Bileşen Parça" @@ -4854,174 +4939,174 @@ msgstr "Bileşen Parça" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "Test Edilebilir Parça" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "İzlenebilir Parça" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "Satın Alınabilir Parça" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "Satılabilir Parça" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "Sanal Parça" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "Oluşturma Tarihi" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "Oluşturan" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "Varsayılan Sağlayıcı" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Fiyat Aralığı" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "Son Stok Sayımı" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "Stok Sayımını Yapan" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "Parça Ayrıntıları" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Türevler" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Ayırmalar" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Yapı Siparişi Ayırmaları" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Satış Siparişi Ayrımaları" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Malzeme Listesi" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Şunda Kullanıldı" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "Parça Fiyatlandırma" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "Üreticiler" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "Planlama" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Test Şablonları" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "İlgili Parçalar" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 #: src/tables/stock/StockItemTable.tsx:310 msgid "Available" -msgstr "Kullanılabilir" +msgstr "Mevcut" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "Stok Yok" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "Gerekli" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "Siparişte" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Parçayı Düzenle" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "Parça Ekle" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "Parçayı Sil" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "Bu parçanın silinmesi geri alınamaz" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "Stok Eylemleri" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "Parça stokunu say" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "Parça stokunu aktar" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "Parça Eylemleri" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "Parça Revizyonu Seç" @@ -5050,7 +5135,7 @@ msgstr "Dahili Fiyatlandırma" #: src/pages/part/PartPricingPanel.tsx:120 #: src/pages/part/pricing/PricingOverviewPanel.tsx:107 msgid "BOM Pricing" -msgstr "BOM Fiyatlandırması" +msgstr "ML Fiyatlandırması" #: src/pages/part/PartPricingPanel.tsx:127 #: src/pages/part/pricing/PricingOverviewPanel.tsx:128 @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "Genel Fiyatlandırma" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "Son Güncelle" @@ -5242,23 +5327,23 @@ msgstr "Sağlayıcı Fiyatı" msgid "Variant Part" msgstr "Türev Parça" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "Satın Alma Siparişini Düzenle" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "Satın Alma Siparişi Ekle" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "Sağlayıcı Referansı" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "Tamamlanan Satır Ögeleri" @@ -5268,91 +5353,91 @@ msgstr "Tamamlanan Satır Ögeleri" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "Sipariş Para Birimi" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "Toplam Tutar" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "Oluşturulma Zamanı" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Sipariş Ayrıntıları" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "Fazladan Satır Ögeleri" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "Satın Alma Siparişi Ver" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "Satın Alma Siparişini İptal Et" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "Satın Alma Siparişini Beklet" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "Satın Alma Siparişini Tamamla" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Sipariş Eylemleri" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "Müşteri Referansı" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "İade Emrini Düzenle" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "İade Emri Ekle" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "İade Emri Ver" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "İade Emrini İptal Et" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "Emir iptal edildi" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "İade Emrini Beklet" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "İade Emrini Tamamla" @@ -5360,15 +5445,15 @@ msgstr "İade Emrini Tamamla" msgid "Customers" msgstr "Müşteriler" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "Tamamlanan Gönderiler" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "Satış Siparişlerini Düzenle" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "Satış Siparişi Ekle" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "Gönderiler" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "Satış Siparişi Ver" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "Satış Siparişini İptal Et" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "Satış Siparişini Beklet" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "Satış Siparişini Tamamla" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "Siparişi Gönder" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "Üst Konum" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "Alt Konumlar" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "Harici" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "Konum Türü" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "En üst düzey stok konumu" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "Konum Ayrıntıları" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "Varsayılan Parçalar" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "Stok Konumunu Düzenle" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "Stok Konumunu Sil" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "Ögeler Eylemi" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "Bu konumdaki stok ögeleri için eylem" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "Alt Konumlar Eylemi" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "Bu konumdaki alt konumlar için eylem" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "Konum Eylemleri" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Temel Parça" @@ -5475,11 +5560,11 @@ msgstr "Temel Parça" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "Yüklendiği Yer" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "Tüketen" @@ -5487,31 +5572,37 @@ msgstr "Tüketen" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "Yapım Siparişi" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "Stok Ayrıntıları" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Stok İzleme" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "Test Verisi" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Yüklenen Ögeler" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Alt Ögeler" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Stok Ögesini Düzenle" @@ -5519,38 +5610,38 @@ msgstr "Stok Ögesini Düzenle" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "Stok Ögesini Sil" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "Stok İşlemleri" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Stoku say" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Stok ekle" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Stoku kaldır" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Aktarım" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Stoku aktar" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "Stok Ögesi Eylemleri" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Süzgeçleri Temizle" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Hiç kayıt bulunamadı" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "Sunucu yanlış veri türü döndürdü" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Hatalı istek" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Yetkisiz" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Yasaklı" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Bulunamadı" @@ -5696,18 +5787,14 @@ msgstr "Bulunamadı" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "Seçilen Ögeleri Sil" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "Seçilen ögeleri silmek istediğinize emin misiniz?" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "Bu eylem geri alınamaz!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "Bu eylem geri alınamaz!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "Bu eylem geri alınamaz!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "Bu eylem geri alınamaz!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Barkod işlemleri" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "Seçili kayıtları sil" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Veriyi yenile" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Tablo filtreleri" @@ -5752,7 +5843,7 @@ msgstr "Tablo filtreleri" #: src/tables/bom/BomTable.tsx:95 msgid "This BOM item is defined for a different parent" -msgstr "Bu BOM ögesi farklı bir üst öge için tanımlı" +msgstr "Bu ML ögesi farklı bir üst öge için tanımlı" #: src/tables/bom/BomTable.tsx:110 msgid "Part Information" @@ -5845,12 +5936,12 @@ msgstr "Doğrulanan ögeleri göster" #: src/tables/bom/BomTable.tsx:335 #: src/tables/bom/UsedInTable.tsx:74 msgid "Inherited" -msgstr "Kalıtıldı" +msgstr "Miras Alındı" #: src/tables/bom/BomTable.tsx:336 #: src/tables/bom/UsedInTable.tsx:75 msgid "Show inherited items" -msgstr "Kalıtılan ögeleri göster" +msgstr "Miras alınan ögeleri göster" #: src/tables/bom/BomTable.tsx:340 msgid "Allow Variants" @@ -5908,38 +5999,38 @@ msgstr "Fiyatlandırılmış ögeleri göster" #: src/tables/bom/BomTable.tsx:378 #: src/tables/bom/BomTable.tsx:511 msgid "Import BOM Data" -msgstr "BOM Verisi İçe aktar" +msgstr "ML Verisi İçe aktar" #: src/tables/bom/BomTable.tsx:388 #: src/tables/bom/BomTable.tsx:523 msgid "Add BOM Item" -msgstr "BOM Ögesi Ekle" +msgstr "ML Ögesi Ekle" #: src/tables/bom/BomTable.tsx:393 msgid "BOM item created" -msgstr "BOM ögesi oluşturuldu" +msgstr "ML ögesi oluşturuldu" #: src/tables/bom/BomTable.tsx:400 msgid "Edit BOM Item" -msgstr "BOM Ögesini Düzenle" +msgstr "ML Ögesini Düzenle" #: src/tables/bom/BomTable.tsx:402 msgid "BOM item updated" -msgstr "BOM ögesi güncellendi" +msgstr "ML ögesi güncellendi" #: src/tables/bom/BomTable.tsx:409 msgid "Delete BOM Item" -msgstr "BOM Ögesini Sil" +msgstr "ML Ögesini Sil" #: src/tables/bom/BomTable.tsx:410 msgid "BOM item deleted" -msgstr "BOM ögesi silindi" +msgstr "ML ögesi silindi" #: src/tables/bom/BomTable.tsx:423 #: src/tables/bom/BomTable.tsx:426 #: src/tables/bom/BomTable.tsx:517 msgid "Validate BOM" -msgstr "BOM Doğrula" +msgstr "ML Doğrula" #: src/tables/bom/BomTable.tsx:427 msgid "Do you want to validate the bill of materials for this assembly?" @@ -5947,23 +6038,23 @@ msgstr "Bu birleştirme için malzeme listesini doğrulamak istiyor musunuz?" #: src/tables/bom/BomTable.tsx:430 msgid "BOM validated" -msgstr "BOM doğrulandı" +msgstr "ML doğrulandı" #: src/tables/bom/BomTable.tsx:442 msgid "BOM item validated" -msgstr "BOM ögesi doğrulandı" +msgstr "ML ögesi doğrulandı" #: src/tables/bom/BomTable.tsx:451 msgid "Failed to validate BOM item" -msgstr "BOM ögesi doğrulama başarısız oldu" +msgstr "ML ögesi doğrulama başarısız oldu" #: src/tables/bom/BomTable.tsx:463 msgid "View BOM" -msgstr "BOM Görüntüle" +msgstr "ML Görüntüle" #: src/tables/bom/BomTable.tsx:472 msgid "Validate BOM Line" -msgstr "BOM Satırını Doğrula" +msgstr "ML Satırını Doğrula" #: src/tables/bom/BomTable.tsx:489 msgid "Edit Substitutes" @@ -6023,7 +6114,7 @@ msgstr "Ayrılan Miktar" #: src/tables/build/BuildAllocatedStockTable.tsx:116 #: src/tables/sales/SalesOrderAllocationTable.tsx:94 msgid "Available Quantity" -msgstr "Kullanılabilir Miktar" +msgstr "Mevcut Miktar" #: src/tables/build/BuildAllocatedStockTable.tsx:126 #: src/tables/build/BuildOrderTestTable.tsx:177 @@ -6083,7 +6174,7 @@ msgstr "Yetersiz stok" #: src/tables/sales/SalesOrderLineItemTable.tsx:125 #: src/tables/stock/StockItemTable.tsx:186 msgid "No stock available" -msgstr "Kullanılabilir stok yok" +msgstr "Mevcut stok yok" #: src/tables/build/BuildLineTable.tsx:212 msgid "Gets Inherited" @@ -6560,7 +6651,7 @@ msgstr "Sağlayıcı dosyası" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Dahili" @@ -7137,7 +7228,7 @@ msgstr "Eklentiyi Etkinleştir" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Etkisizleştir" @@ -7145,7 +7236,7 @@ msgstr "Etkisizleştir" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Etkinleştir" @@ -7173,75 +7264,75 @@ msgstr "Etkinleştir" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "Kaldır" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "Eklenti Kur" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "Kur" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "Eklenti başarıyla yüklendi" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "Eklentiyi Kaldır" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "Eklentiyi kaldırmayı onaylayın" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "Seçilen eklenti kaldırılacak." -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "Bu eylem geri alınamaz." -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "Eklenti başarıyla yüklendi" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "Eklentiyi Sil" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 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?" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "Eklentiler yeniden yüklendi" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "Eklentiler başarıyla yeniden yüklendi" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "Eklentileri Yeniden Yükle" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "Eklenti Kur" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "Eklenti Ayrıntısı" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Örnek" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Kuruldu" @@ -7328,7 +7419,7 @@ msgstr "Satır ögesi ekle" #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 msgid "Receive items" -msgstr "Ögeleri al" +msgstr "Ögeleri teslim al" #: src/tables/purchasing/SupplierPartTable.tsx:93 msgid "MPN" @@ -7493,23 +7584,23 @@ msgstr "Özel Birim Ekle" #: src/tables/settings/CustomUnitsTable.tsx:60 msgid "Edit Custom Unit" -msgstr "" +msgstr "Özel Birimi Düzenle" #: src/tables/settings/CustomUnitsTable.tsx:68 msgid "Delete Custom Unit" -msgstr "" +msgstr "Özel Birimi Sil" #: src/tables/settings/CustomUnitsTable.tsx:100 msgid "Add custom unit" -msgstr "" +msgstr "Özel birim ekle" #: src/tables/settings/ErrorTable.tsx:31 msgid "When" -msgstr "" +msgstr "Ne zaman" #: src/tables/settings/ErrorTable.tsx:41 msgid "Error Information" -msgstr "" +msgstr "Hata Bilgisi" #: src/tables/settings/ErrorTable.tsx:51 #~ msgid "Delete error report" @@ -7517,81 +7608,81 @@ msgstr "" #: src/tables/settings/ErrorTable.tsx:53 msgid "Delete Error Report" -msgstr "" +msgstr "Hata Raporunu Sil" #: src/tables/settings/ErrorTable.tsx:55 msgid "Are you sure you want to delete this error report?" -msgstr "" +msgstr "Bu hata raporunu silmek istediğinize emin misiniz?" #: src/tables/settings/ErrorTable.tsx:57 msgid "Error report deleted" -msgstr "" +msgstr "Hata raporu silindi" #: src/tables/settings/ErrorTable.tsx:79 #: src/tables/settings/FailedTasksTable.tsx:59 msgid "Error Details" -msgstr "" +msgstr "Hata ayrıntıları" #: src/tables/settings/FailedTasksTable.tsx:26 #: src/tables/settings/PendingTasksTable.tsx:19 #: src/tables/settings/ScheduledTasksTable.tsx:19 msgid "Task" -msgstr "" +msgstr "Görev" #: src/tables/settings/FailedTasksTable.tsx:32 #: src/tables/settings/PendingTasksTable.tsx:24 msgid "Task ID" -msgstr "" +msgstr "Görev Kimliği" #: src/tables/settings/FailedTasksTable.tsx:36 #: src/tables/stock/StockItemTestResultTable.tsx:218 msgid "Started" -msgstr "" +msgstr "Başladı" #: src/tables/settings/FailedTasksTable.tsx:42 msgid "Stopped" -msgstr "" +msgstr "Durdu" #: src/tables/settings/FailedTasksTable.tsx:48 msgid "Attempts" -msgstr "" +msgstr "Denemeler" #: src/tables/settings/GroupTable.tsx:90 msgid "Group with id {id} not found" -msgstr "" +msgstr "{id} kimlikli grup bulunamadı" #: src/tables/settings/GroupTable.tsx:92 msgid "An error occurred while fetching group details" -msgstr "" +msgstr "Grup ayrıntıları alınırken bir hata oluştu" #: src/tables/settings/GroupTable.tsx:116 msgid "Permission set" -msgstr "" +msgstr "İzinler" #: src/tables/settings/GroupTable.tsx:177 msgid "Delete group" -msgstr "" +msgstr "Grubu Sil" #: src/tables/settings/GroupTable.tsx:178 msgid "Group deleted" -msgstr "" +msgstr "Grup silindi" #: src/tables/settings/GroupTable.tsx:180 msgid "Are you sure you want to delete this group?" -msgstr "" +msgstr "Bu grubu silmek istediğinize emin misiniz?" #: src/tables/settings/GroupTable.tsx:185 #: src/tables/settings/GroupTable.tsx:197 msgid "Add group" -msgstr "" +msgstr "Grup ekle" #: src/tables/settings/GroupTable.tsx:210 msgid "Edit group" -msgstr "" +msgstr "Grubu düzenle" #: src/tables/settings/ImportSessionTable.tsx:38 msgid "Delete Import Session" -msgstr "" +msgstr "İçe Aktarma Oturununu Sil" #: src/tables/settings/ImportSessionTable.tsx:44 #: src/tables/settings/ImportSessionTable.tsx:131 @@ -7782,10 +7873,6 @@ msgstr "Personel" msgid "Show staff users" msgstr "Personel kullanıcıları göster" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "Süper Kullanıcı" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "Süper kullanıcıları göster" @@ -7821,80 +7908,84 @@ msgstr "Bu stok ögesi bir satış siparişine atandı" #: src/tables/stock/StockItemTable.tsx:119 msgid "This stock item has been assigned to a customer" -msgstr "" +msgstr "Bu stok ögesi bir müşteriye atanmıştır" #: src/tables/stock/StockItemTable.tsx:128 msgid "This stock item is installed in another stock item" -msgstr "" +msgstr "Bu stok ögesi başka bir stok ögesinde kuruludur" #: src/tables/stock/StockItemTable.tsx:137 msgid "This stock item has been consumed by a build order" -msgstr "" +msgstr "Bu stok ögesi bir yapım siparişi tarafından tüketildi" #: src/tables/stock/StockItemTable.tsx:146 msgid "This stock item has expired" -msgstr "" +msgstr "Bu stok ögesinin süresi doldu" #: src/tables/stock/StockItemTable.tsx:150 msgid "This stock item is stale" -msgstr "" +msgstr "Bu stok ögesi eski" #: src/tables/stock/StockItemTable.tsx:161 msgid "This stock item is fully allocated" -msgstr "" +msgstr "Bu stok ögesi tümüyle ayrıldı" #: src/tables/stock/StockItemTable.tsx:168 msgid "This stock item is partially allocated" -msgstr "" +msgstr "Bu stok ögesi kısmen ayrıldı" #: src/tables/stock/StockItemTable.tsx:196 msgid "This stock item has been depleted" -msgstr "" +msgstr "Bu stok ögesi tükendi" #: src/tables/stock/StockItemTable.tsx:232 msgid "Stocktake Date" -msgstr "" +msgstr "Stok Sayımı Tarihi" #: src/tables/stock/StockItemTable.tsx:236 msgid "Expiry Date" -msgstr "" +msgstr "Son Kullanma Tarihi" #: src/tables/stock/StockItemTable.tsx:260 msgid "Stock Value" -msgstr "" +msgstr "Stok Değeri" #: src/tables/stock/StockItemTable.tsx:290 msgid "Show stock for active parts" -msgstr "" +msgstr "Aktif parçalar için stoku göster" #: src/tables/stock/StockItemTable.tsx:295 msgid "Filter by stock status" +msgstr "Stok durumuna göre süz" + +#: src/tables/stock/StockItemTable.tsx:301 +msgid "Show stock for assembled parts" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" -msgstr "" +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" -msgstr "" +msgstr "Ayrılan ögeleri göster" #: src/tables/stock/StockItemTable.tsx:311 msgid "Show items which are available" -msgstr "" +msgstr "Stokta olan ögeleri göster" #: src/tables/stock/StockItemTable.tsx:315 #: src/tables/stock/StockLocationTable.tsx:44 msgid "Include Sublocations" -msgstr "" +msgstr "Alt Konumları İçer" #: src/tables/stock/StockItemTable.tsx:316 msgid "Include stock in sublocations" -msgstr "" +msgstr "Alt konumlardaki stoku içer" #: src/tables/stock/StockItemTable.tsx:320 msgid "Depleted" -msgstr "" +msgstr "Tükendi" #: src/tables/stock/StockItemTable.tsx:321 msgid "Show depleted stock items" diff --git a/src/frontend/src/locales/uk/messages.po b/src/frontend/src/locales/uk/messages.po index 98a247a4df..66a9ec9158 100644 --- a/src/frontend/src/locales/uk/messages.po +++ b/src/frontend/src/locales/uk/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: uk\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \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" @@ -70,7 +70,7 @@ msgstr "Етикетку успішно роздруковано" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "Видалити пов'язане зображення з цього е #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "Видалити" @@ -188,7 +188,6 @@ msgstr "Очистити" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Відправити" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "Існують деякі помилки для одного або декількох полів" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Оновити" @@ -437,7 +436,7 @@ msgstr "Оновити" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Видалити" @@ -498,6 +497,7 @@ msgstr "Або продовжити з іншими методами" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Ім'я користувача" @@ -608,9 +608,10 @@ msgstr "Хост" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Пошук" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Невідома помилка" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Закрити вікно" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Сервер" @@ -1267,7 +1268,7 @@ msgstr "Налаштування облікового запису" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Налаштування системи" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Центр адміністрування" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Сторінки" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Плагіни" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Жодних результатів" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Адреса" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Адреси" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Контакт" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Контакти" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Власник" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Власники" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Користувач" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "Група" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "Імпортувати сеанс" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "Конфігурація плагіну" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Адреси" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Контакти" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Власники" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Користувачі" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "Група" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Групи" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "Імпортувати сеанс" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "Імпортувати сеанси" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "Конфігурація плагіну" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "Конфігурації плагінів" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "Немає в наявності" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "В наявності" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "Серійний номер" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Налаштування відображення" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Мова" @@ -2420,7 +2419,7 @@ msgstr "Домашня сторінка" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Дешборд" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "Демо" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Статус" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "Перемістити" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Додати" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Кількість" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "Обрати камеру" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/vi/messages.po b/src/frontend/src/locales/vi/messages.po index 0e455e1dc8..966f922b5f 100644 --- a/src/frontend/src/locales/vi/messages.po +++ b/src/frontend/src/locales/vi/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: vi\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "Gửi" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "Cập nhật" @@ -437,7 +436,7 @@ msgstr "Cập nhật" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "Xóa" @@ -498,6 +497,7 @@ msgstr "Hoặc tiếp tục với phương thức khác" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "Tên người dùng" @@ -608,9 +608,10 @@ msgstr "Host" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "Tìm kiếm" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "Xem thêm" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "Lỗi không xác định" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "Liên kết" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "Đóng cửa sổ" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "Máy chủ" @@ -1267,7 +1268,7 @@ msgstr "Cài đặt tài khoản" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "Thiết lập hệ thống" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "Trung tâm quản trị" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "Trang" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "Plugins" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "Giới thiệu" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "Không có kết quả" msgid "No results available for search query" msgstr "Không có kết quả nào được tìm thấy với truy vấn tìm kiếm" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "Model không rõ: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "Model không rõ: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "Model không rõ: {model}" msgid "Part" msgstr "Phụ kiện" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "Phụ tùng" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "Mẫu tham số phụ kiện" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "Mẫu tham số phụ kiện" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "Phụ kiện nhà cung cấp" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "Nhà cung cấp phụ kiện" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "Phụ kiện nhà sản xuất" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "Nhà sản xuất phụ kiện" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "Danh mục phụ kiện" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "Danh mục phụ kiện" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "Hàng trong kho" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "Hàng trong kho" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "Vị trí kho hàng" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "Vị trí kho hàng" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "Xây dựng" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "Bản dựng" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "Công ty" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "Doanh nghiệp" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "Công ty" msgid "Project Code" msgstr "Mã dự án" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "Mã dự án" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "Đơn đặt mua" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "Đơn hàng mua" + +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "Đơn đặt bán" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "Đơn hàng bán" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "Vận chuyển đơn hàng" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "Vận chuyển đơn hàng" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "Đơn hàng trả lại" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "Đơn hàng trả lại" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "Địa chỉ" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "Địa chỉ" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "Liên hệ" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "Danh bạ" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "Chủ sở hữu" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "Chủ sở hữu" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "Người dùng" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "Phụ tùng" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "Mẫu tham số phụ kiện" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "Nhà cung cấp phụ kiện" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "Nhà sản xuất phụ kiện" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "Danh mục phụ kiện" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "Hàng trong kho" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "Vị trí kho hàng" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "Đơn đặt bản dựng" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "Doanh nghiệp" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "Mã dự án" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "Đơn hàng mua" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "Đơn hàng bán" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "Vận chuyển đơn hàng" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "Đơn hàng trả lại" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "Địa chỉ" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "Danh bạ" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "Chủ sở hữu" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "Người dùng" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "Nhóm" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "Lô hàng" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "Kho hàng" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "Cài đặt hiển thị" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "Chế độ màu sắc" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "Ngôn ngữ" @@ -2420,7 +2419,7 @@ msgstr "Trang chủ" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "Bảng điều khiển" @@ -2548,7 +2547,7 @@ msgstr "Tin hiện tại" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "Trang web" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "Demo" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "Xây dựng" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "Mua sắm" @@ -2579,9 +2573,9 @@ msgstr "Mua sắm" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "Bán hàng" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "Trạng thái" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "Điền số sê-ri cho kho mới (hoặc để trống)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "Còn hàng" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "Thêm" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "Đếm" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "Chưa quét" msgid "Select Camera" msgstr "Chọn camera" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "Thông tin tài khoản" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,16 +3658,29 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "Sử dụng ngôn ngữ pseudo" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "thanh" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "trái xoan" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "chấm" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "Chủ đề" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "Màu chủ đạo" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "Sử dụng ngôn ngữ pseudo" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "Màu trắng" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "Màu đen" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "Bo viền" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "Thanh tải" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "Tham số phụ kiện" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "Thiết lập phần bổ sung" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4017,6 +4082,18 @@ msgstr "Tác vụ thất bại" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "Chọn thiết lập thích hợp với vòng đời người dùng. Có thêm ở" @@ -4025,15 +4102,15 @@ msgstr "Chọn thiết lập thích hợp với vòng đời người dùng. Có msgid "System settings" msgstr "Thiết lập hệ thống" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "Đăng nhập" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "Mã vạch" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "Giá bán" @@ -4045,41 +4122,49 @@ msgstr "Giá bán" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "Nhãn" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "Báo cáo" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "Kiểm kê" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "Đơn đặt bản dựng" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "Chuyển sang thiết lập người dùng" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "Tài khoản" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "Bảo mật" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "Tùy chọn hiển thị" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "Cài đặt tài khoản" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "Chuyển sang thiết lập hệ thống" @@ -4115,8 +4200,8 @@ msgstr "Đánh dấu chưa đọc" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "Đánh dấu chưa đọc" msgid "IPN" msgstr "IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "Mô tả" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "Đầu ra hoàn thiện" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "Chịu trách nhiệm" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "Ngày mục tiêu" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "Chi tiết bản dựng" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "Dòng hàng hóa" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "Đầu ra chưa hoàn hiện" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "Kho tiêu thụ" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "Đơn đặt bản dựng con" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "Đính kèm" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "Ghi chú" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "Nhà cung cấp" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "Nhà sản xuất" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "Nhà sản xuất" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "Chi tiết" @@ -4520,11 +4605,11 @@ msgstr "Chi tiết" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "Sửa doanh nghiệp" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "Thông số" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "Nhà cung cấp" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "Số lượng gói" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "Sửa sản phẩm nhà cung cấp" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "Thêm sản phẩm nhà cung cấp" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "Đường dẫn" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "Cấu trúc" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "Danh mục" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "Đơn vị" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "Khoảng giá" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "Biến thể" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "Phân bổ" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "Phân bổ đơn hàng bản dựng" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "Phân bổ đơn hàng bán" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "Hóa đơn nguyên vật liệu" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "Sử dụng trong" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "Mẫu thử nghiệm" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "Phụ kiện liên quan" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "Phụ kiện liên quan" msgid "Available" msgstr "Có sẵn" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "On Order" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "Sửa phụ kiện" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "Chi tiết đơn đặt" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "Chức năng đơn đặt" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "Sản phẩm cơ bản" @@ -5475,11 +5560,11 @@ msgstr "Sản phẩm cơ bản" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "Theo dõi tồn kho" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "Mục đã cài đặt" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "Mục con" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "Sửa hàng trong kho" @@ -5519,38 +5610,38 @@ msgstr "Sửa hàng trong kho" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "Đếm hàng" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "Thêm hàng" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "Xóa hàng" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "Chuyển" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "Chuyển giao hàng" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "Xóa bộ lọc" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "Không tìm thấy biểu ghi" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "Yêu cầu không hợp lệ" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "Chưa cấp quyền" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "Bị cấm" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "Không tìm thấy" @@ -5696,18 +5787,14 @@ msgstr "Không tìm thấy" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "Chức năng mã vạch" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "Làm mới dữ liệu" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "Bộ lọc bảng" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "Gắn liền" @@ -7137,7 +7228,7 @@ msgstr "Kích hoạt phần bổ sung" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "Hủy kích hoạt" @@ -7145,7 +7236,7 @@ msgstr "Hủy kích hoạt" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "Kích hoạt" @@ -7173,75 +7264,75 @@ msgstr "Kích hoạt" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "Mẫu" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "Đã cài đặt" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" diff --git a/src/frontend/src/locales/zh_Hans/messages.po b/src/frontend/src/locales/zh_Hans/messages.po index 54a9a9c926..881fe1c314 100644 --- a/src/frontend/src/locales/zh_Hans/messages.po +++ b/src/frontend/src/locales/zh_Hans/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-10 00:20\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -70,7 +70,7 @@ msgstr "标签打印成功" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "删除与此项关联的图片?" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "移除" @@ -188,7 +188,6 @@ msgstr "清除" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "提交" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "一个或多个表单字段存在错误" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "更新" @@ -437,7 +436,7 @@ msgstr "更新" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "删除" @@ -498,6 +497,7 @@ msgstr "或继续使用其他方法" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "用户名" @@ -608,9 +608,10 @@ msgstr "主机" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "{0} 个图标" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "搜索" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "了解更多" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "未知错误" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "选择错误纠正级别" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "链接" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "关闭模态框" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "服务器" @@ -1267,7 +1268,7 @@ msgstr "账户设定" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "系统设置" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "管理中心" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "页面" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "插件" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "关于" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "无结果" msgid "No results available for search query" msgstr "没有可供搜索查询的结果" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "未知模型: {model}" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "未知模型: {model}" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "未知模型: {model}" msgid "Part" msgstr "零件" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "零件" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "零件参数模板" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "零件参数模板" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "零件测试模板" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "零件测试模板" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "供应商零件" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "供应商零件" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "制造商零件" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "制造商零件" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "零件类别" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "零件类别" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "库存项" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "库存项" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "库存地点" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "库存地点" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "库存地点类型" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "库存地点类型" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "库存历史记录" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" -msgstr "生产订单" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "库存历史记录" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "生产..." + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "编译" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "生产行" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "生产行" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "构建项目:" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "构建多个项目" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "公司" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "公司" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "公司" msgid "Project Code" msgstr "项目编码" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "项目编码" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "采购订单" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" -msgstr "" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "采购订单" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "采购订单行" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "采购订单行" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "销售订单" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "销售订单" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "销售订单配送" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "销售订单配送" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "退货订单" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "退货订单" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "退货订单行项目" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "退货订单行项目" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "地址" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "地址" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "联系人" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "联系人" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "所有者" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "所有者" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "用户" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "群组" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "导入会话" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "标签模板" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "报告模板" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "插件配置" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "零件" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "零件参数模板" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "零件测试模板" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "供应商零件" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "制造商零件" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "零件类别" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "库存项" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "库存地点" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "库存地点类型" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "库存历史记录" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "生产订单" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "生产行" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "构建多个项目" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "公司" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "项目编码" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "采购订单" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "销售订单" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "销售订单配送" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "退货订单" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "退货订单行项目" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "地址" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "联系人" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "所有者" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "用户" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "群组" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "群组" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "导入会话" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "导入会话" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "标签模板" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "标签模板" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "报告模板" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "报告模板" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "插件配置" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "插件配置" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "配送" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "未激活" @@ -1795,17 +1802,17 @@ msgstr "无库存" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "库存" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "序列号" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "未指定设置" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "未指定设置" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "显示设置" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "色彩模式" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "语言" @@ -2420,7 +2419,7 @@ msgstr "主页" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "仪表盘" @@ -2548,7 +2547,7 @@ msgstr "当前新闻" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "网站" @@ -2560,18 +2559,13 @@ msgstr "GitHub" msgid "Demo" msgstr "演示" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "生产..." - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "采购中" @@ -2579,9 +2573,9 @@ msgstr "采购中" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "销售" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "来源地点" @@ -2917,7 +2911,7 @@ msgstr "添加备注" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "存储已收到的库存" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "序列号" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "包装" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "状态" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "备注" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "库存单位 (SKU)" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "输入新库存的序列号(或留空)" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "库存状态" @@ -3048,7 +3042,7 @@ msgstr "库存状态" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "移动到默认位置" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "入库" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "移动" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "添加" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "总计" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "移除库存" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "转移库存" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "库存数量" @@ -3610,17 +3608,46 @@ msgstr "未扫描" msgid "Select Camera" msgstr "选择相机" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" -msgstr "账户详情" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" -msgstr "名" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" -msgstr "姓" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 #~ msgid "First name: {0}" @@ -3631,16 +3658,29 @@ msgstr "姓" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "名:" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" -msgstr "姓:" +#~ msgid "Last name:" +#~ msgstr "Last name:" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" -msgstr "使用 pseudo 语言" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "超级用户" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 msgid "Single Sign On Accounts" @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "未配置令牌" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "未配置令牌" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "上一次查看时间" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "栏" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "椭圆" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "点" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "主题" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" -msgstr "主要颜色" +#~ msgid "Primary color" +#~ msgstr "Primary color" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "使用 pseudo 语言" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 msgid "White color" msgstr "白色" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 msgid "Black color" msgstr "黑色" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "边框半径" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "加载器" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "数据导入" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "后台任务" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "错误报告" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "币种" @@ -3858,20 +3922,21 @@ msgstr "币种" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "自定义单位" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "零件参数" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "类别参数" @@ -3879,24 +3944,24 @@ msgstr "类别参数" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "位置类型" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "设备" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "快捷操作" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "添加新用户" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "高级选项" @@ -3912,19 +3977,19 @@ msgstr "设备错误堆栈" msgid "There are no machine registry errors." msgstr "没有设备注册表错误。" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "信息" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "此 InvenTree 未启用外部插件。" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "此 InvenTree 未启用外部插件。" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,14 +3998,14 @@ msgstr "此 InvenTree 未启用外部插件。" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" -msgstr "插件错误" - -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 msgid "Plugin Settings" msgstr "插件设置" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "插件错误" + #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 msgid "Page Size" msgstr "" @@ -4017,6 +4082,18 @@ msgstr "失败任务" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "选择与用户生命周期相关的设置。更多详情见 " @@ -4025,15 +4102,15 @@ msgstr "选择与用户生命周期相关的设置。更多详情见 " msgid "System settings" msgstr "系统设置" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "登录" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "条形码" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "定价" @@ -4045,41 +4122,49 @@ msgstr "定价" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "标签" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "报告" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "库存盘点" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "生产订单" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "切换到用户设置" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "账户" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "安全" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "显示选项" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "账户设置" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "切换到系统设置" @@ -4115,8 +4200,8 @@ msgstr "标记为未读" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "标记为未读" msgid "IPN" msgstr "内部零件编码 IPN" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "参考" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "参考" msgid "Description" msgstr "描述" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "上级生产" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "生产数量" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "已出产" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "发布人" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "发布人" msgid "Responsible" msgstr "责任人" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "已创建" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "预计日期" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "已完成" @@ -4229,7 +4314,7 @@ msgstr "已完成" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "任意地点" @@ -4237,7 +4322,7 @@ msgstr "任意地点" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "目标地点" @@ -4253,69 +4338,69 @@ msgstr "目标地点" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "生产详情" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "行项目" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "未出产" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "已分配的库存" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "已消耗库存" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "子生产订单" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "测试结果" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "测试统计数据" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "附件" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "备注" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "编辑生产订单" @@ -4333,126 +4418,126 @@ msgstr "编辑生产订单" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "添加生产订单" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "取消生产订单" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "订单已取消" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "取消此订单" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "挂起生产订单" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "将此订单挂起" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "将此订单挂起" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "挂起订单" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "发出生产订单" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "发出这个订单" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "发出这个订单" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "订单发起" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "完成生产订单" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "标记该订单为已完成" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "订单已完成" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "发布订单" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "完成订单" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "生产订单操作" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "编辑订单" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "复制订单" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "挂起订单" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "取消订单" @@ -4464,24 +4549,24 @@ msgstr "取消订单" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "电话号码" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "电子邮件地址" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "默认货币单位" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "默认货币单位" msgid "Supplier" msgstr "供应商" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "制造商" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "制造商" msgid "Customer" msgstr "客户" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "详情" @@ -4520,11 +4605,11 @@ msgstr "详情" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "制成零件" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "已提供的零件" @@ -4532,84 +4617,84 @@ msgstr "已提供的零件" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "已分配的库存" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "编辑公司" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "公司操作" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "内部零件" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "外部链接" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "制造商零件编号" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "制造商详情" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "制造商零件详情" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "参数" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "供应商" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "编辑制造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "添加制造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "删除制造商零件" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "制造商零件操作" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "制造商零件" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "制造商零件" msgid "Pack Quantity" msgstr "包装数量" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "供应商可用性" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "可用性已更新" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "可用性" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "供应商零件详情" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "接收库存" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "供应商价格" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "供应商零件操作" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "编辑供应商零件" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "删除供应商零件" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "添加供应商零件" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "路径" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "上级类别" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "子类别" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "结构性" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "上级默认位置" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "默认位置" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "最高级零件类别" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "编辑零件类别" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "删除项" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "删除零件类别" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "零件操作" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "对此类别中零件的操作" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "子类别操作" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "对此类别中零件的操作" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "类别操作" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "类别详情" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "变体于" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "修订" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "版本" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "类别" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "默认位置" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "类别默认位置" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "单位" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "关键词" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "关键词" msgid "Available Stock" msgstr "可用库存" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "变体库存" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "最低库存" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "订购中" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "分配生产订单" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "分配销售订单" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "可以创建" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "生产中" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "已锁定" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "模板零件" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "组装零件" @@ -4846,7 +4931,7 @@ msgstr "组装零件" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "组件零件" @@ -4854,114 +4939,114 @@ msgstr "组件零件" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "可追溯零件" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "可购买零件" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "可销售零件" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "虚拟零件" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "创建日期" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "创建人" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "默认供应商" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "价格范围" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "最近库存盘点" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "库存盘点由" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "零件详情" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "变体" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "分配" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "分配生产订单" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "分配销售订单" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "物料清单" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "用于" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "零件价格" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "制造商" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "计划任务" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "测试模板" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "关联零件" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "关联零件" msgid "Available" msgstr "可用的" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "无库存" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "必填" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "订购中" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "编辑零件" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "添加零件" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "删除零件" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "删除此零件无法撤销" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "库存操作" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "清点零件库存" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "转移零件库存" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "零件选项" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "选择零件版本" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "总价" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "最近更新" @@ -5242,23 +5327,23 @@ msgstr "供应商价格" msgid "Variant Part" msgstr "变体零件" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "编辑采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "添加采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "供应商参考" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "已完成行项目" @@ -5268,91 +5353,91 @@ msgstr "已完成行项目" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "订单货币" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "总成本" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "创建于" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "订单细节" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "发布采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "取消采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "挂起采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "完成采购订单" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "订单操作" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "客户参考" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "编辑退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "添加退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "发布退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "取消退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "订单已取消" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "挂起退货订单" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "完成退货订单" @@ -5360,15 +5445,15 @@ msgstr "完成退货订单" msgid "Customers" msgstr "客户" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "完成配送" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "编辑销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "添加销售订单" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "配送" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "发布销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "取消销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "挂起销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "完成销售订单" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "装货单" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "上级地点" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "次级地点" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "外部" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "位置类型" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "最高级库存位置" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "位置详细信息" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "默认零件" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "编辑库存地点" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "删除库存地点" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "项目操作" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "对此位置中的库存物品执行的操作" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "子仓库操作" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "对此位置中的子位置执行的操作" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "位置操作" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "基础零件" @@ -5475,11 +5560,11 @@ msgstr "基础零件" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "安装于" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "消耗者" @@ -5487,31 +5572,37 @@ msgstr "消耗者" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "生产订单" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "库存详情" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "库存跟踪" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "测试数据" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "已安装的项目" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "子项目" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "编辑库存项" @@ -5519,38 +5610,38 @@ msgstr "编辑库存项" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "删除库存项" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "库存操作" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "库存计数" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "添加库存" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "移除库存" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "转移" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "转移库存" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "库存项操作" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "清除筛选" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "没有找到记录" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "服务器返回了错误的数据类型" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "错误的请求" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "未授权" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "禁止访问" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "未找到" @@ -5696,18 +5787,14 @@ msgstr "未找到" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "删除所选项目" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "确定要删除所选的项目吗?" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "此操作无法撤消!" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "此操作无法撤消!" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "此操作无法撤消!" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "此操作无法撤消!" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "条形码操作" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "删除选中的记录" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "刷新数据" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "表格过滤器" @@ -6560,7 +6651,7 @@ msgstr "供应商文件" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "内置" @@ -7137,7 +7228,7 @@ msgstr "激活插件" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "停用" @@ -7145,7 +7236,7 @@ msgstr "停用" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "激活" @@ -7173,75 +7264,75 @@ msgstr "激活" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "卸载" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "安装插件" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "安装" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "插件安装成功" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "卸载插件" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "确认插件卸载" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "所选插件将被卸载。" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "此操作无法撤销。" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "插件卸载成功" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "刪除插件" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "删除此插件配置将删除所有相关的设置和数据。您确定要删除此插件吗?" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "插件已重载" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "插件重载成功" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "重载插件" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "安装插件" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "插件详情" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "样本" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "已安装" @@ -7782,10 +7873,6 @@ msgstr "工作人员" msgid "Show staff users" msgstr "显示工作人员用户" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "超级用户" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "显示超级用户" @@ -7872,8 +7959,12 @@ msgid "Filter by stock status" msgstr "按库存状态筛选" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" -msgstr "显示装配零件的库存" +msgid "Show stock for assembled parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" diff --git a/src/frontend/src/locales/zh_Hant/messages.po b/src/frontend/src/locales/zh_Hant/messages.po index c7de7d10fe..4dccc91455 100644 --- a/src/frontend/src/locales/zh_Hant/messages.po +++ b/src/frontend/src/locales/zh_Hant/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: inventree\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-09-09 03:25\n" +"PO-Revision-Date: 2024-09-16 00:40\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -70,7 +70,7 @@ msgstr "" #: src/components/nav/SearchDrawer.tsx:448 #: src/pages/ErrorPage.tsx:11 #: src/pages/part/PartPricingPanel.tsx:67 -#: src/tables/InvenTreeTable.tsx:494 +#: src/tables/InvenTreeTable.tsx:496 #: src/tables/bom/BomTable.tsx:450 #: src/tables/stock/StockItemTestResultTable.tsx:317 msgid "Error" @@ -158,7 +158,7 @@ msgstr "" #: src/forms/StockForms.tsx:523 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 -#: src/pages/stock/StockDetail.tsx:510 +#: src/pages/stock/StockDetail.tsx:511 msgid "Remove" msgstr "" @@ -188,7 +188,6 @@ msgstr "" #: src/components/details/DetailsImage.tsx:232 #: src/components/forms/ApiForm.tsx:640 #: src/contexts/ThemeContext.tsx:43 -#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:60 msgid "Submit" msgstr "" @@ -427,7 +426,7 @@ msgid "Errors exist for one or more form fields" msgstr "" #: src/components/forms/ApiForm.tsx:678 -#: src/tables/plugin/PluginListTable.tsx:388 +#: src/tables/plugin/PluginListTable.tsx:391 msgid "Update" msgstr "" @@ -437,7 +436,7 @@ msgstr "" #: src/pages/Index/Scan.tsx:357 #: src/pages/Notifications.tsx:123 #: src/tables/RowActions.tsx:43 -#: src/tables/plugin/PluginListTable.tsx:420 +#: src/tables/plugin/PluginListTable.tsx:423 msgid "Delete" msgstr "" @@ -498,6 +497,7 @@ msgstr "" #: src/components/forms/AuthenticationForm.tsx:106 #: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 msgid "Username" msgstr "使用者帳號" @@ -608,9 +608,10 @@ msgstr "" #: src/components/forms/HostOptionsForm.tsx:42 #: src/components/forms/HostOptionsForm.tsx:70 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 -#: src/pages/part/CategoryDetail.tsx:80 -#: src/pages/part/PartDetail.tsx:143 -#: src/pages/stock/LocationDetail.tsx:82 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 #: src/tables/machine/MachineTypeTable.tsx:65 #: src/tables/machine/MachineTypeTable.tsx:109 #: src/tables/machine/MachineTypeTable.tsx:216 @@ -687,7 +688,7 @@ msgid "{0} icons" msgstr "" #: src/components/forms/fields/RelatedModelField.tsx:318 -#: src/pages/Index/Settings/UserSettings.tsx:96 +#: src/pages/Index/Settings/UserSettings.tsx:97 #: src/tables/Search.tsx:23 msgid "Search" msgstr "搜尋" @@ -968,7 +969,7 @@ msgid "Read More" msgstr "" #: src/components/items/ErrorItem.tsx:5 -#: src/tables/InvenTreeTable.tsx:486 +#: src/tables/InvenTreeTable.tsx:488 msgid "Unknown error" msgstr "" @@ -1038,10 +1039,10 @@ msgid "Select Error Correction Level" msgstr "" #: src/components/items/QRCode.tsx:173 -#: src/pages/part/PartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:181 -#: src/pages/sales/ReturnOrderDetail.tsx:160 -#: src/pages/sales/SalesOrderDetail.tsx:169 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 msgid "Link" msgstr "" @@ -1164,7 +1165,7 @@ msgid "Close modal" msgstr "" #: src/components/modals/ServerInfoModal.tsx:26 -#: src/pages/Index/Settings/SystemSettings.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:39 msgid "Server" msgstr "" @@ -1267,7 +1268,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:67 #: src/defaults/menuItems.tsx:58 -#: src/pages/Index/Settings/SystemSettings.tsx:314 +#: src/pages/Index/Settings/SystemSettings.tsx:315 msgid "System Settings" msgstr "" @@ -1286,7 +1287,7 @@ msgstr "" #: src/components/nav/MainMenu.tsx:86 #: src/defaults/actions.tsx:71 #: src/defaults/menuItems.tsx:63 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 msgid "Admin Center" msgstr "" @@ -1321,8 +1322,8 @@ msgid "Pages" msgstr "" #: src/components/nav/NavigationDrawer.tsx:65 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:186 -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:41 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 msgid "Plugins" msgstr "" @@ -1336,8 +1337,8 @@ msgid "About" msgstr "" #: src/components/nav/NotificationDrawer.tsx:93 -#: src/pages/Index/Settings/SystemSettings.tsx:109 -#: src/pages/Index/Settings/UserSettings.tsx:126 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 #: src/pages/Notifications.tsx:65 #: src/pages/Notifications.tsx:151 msgid "Notifications" @@ -1398,23 +1399,27 @@ msgstr "" msgid "No results available for search query" msgstr "" +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + #: src/components/render/Instance.tsx:222 msgid "Unknown model: {model}" msgstr "" -#: src/components/render/ModelType.tsx:101 -#~ msgid "Builds" -#~ msgstr "Builds" - -#: src/components/render/ModelType.tsx:147 -#~ msgid "Purchase Order Line" -#~ msgstr "Purchase Order Line" - -#: src/components/render/ModelType.tsx:148 -#~ msgid "Purchase Order Lines" -#~ msgstr "Purchase Order Lines" - -#: src/components/render/ModelType.tsx:202 +#: src/components/render/ModelType.tsx:28 #: src/forms/BuildForms.tsx:229 #: src/forms/BuildForms.tsx:452 #: src/forms/BuildForms.tsx:602 @@ -1427,8 +1432,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/build/BuildDetail.tsx:90 -#: src/pages/part/PartDetail.tsx:1079 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 #: src/tables/build/BuildAllocatedStockTable.tsx:82 #: src/tables/part/PartTable.tsx:28 #: src/tables/part/RelatedPartTable.tsx:45 @@ -1438,76 +1443,148 @@ msgstr "" msgid "Part" msgstr "" -#: src/components/render/ModelType.tsx:204 +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 msgid "Part Parameter Template" msgstr "" -#: src/components/render/ModelType.tsx:206 +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 msgid "Part Test Template" msgstr "" -#: src/components/render/ModelType.tsx:208 -#: src/pages/company/SupplierPartDetail.tsx:198 -#: src/pages/company/SupplierPartDetail.tsx:355 -#: src/pages/stock/StockDetail.tsx:169 +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 #: src/tables/build/BuildAllocatedStockTable.tsx:131 #: src/tables/part/PartPurchaseOrdersTable.tsx:49 #: src/tables/purchasing/SupplierPartTable.tsx:68 msgid "Supplier Part" msgstr "" -#: src/components/render/ModelType.tsx:210 -#: src/pages/company/ManufacturerPartDetail.tsx:131 +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 #: src/tables/part/PartPurchaseOrdersTable.tsx:55 msgid "Manufacturer Part" msgstr "" -#: src/components/render/ModelType.tsx:212 -#: src/pages/part/CategoryDetail.tsx:303 +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 msgid "Part Category" msgstr "" -#: src/components/render/ModelType.tsx:214 +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 #: src/forms/BuildForms.tsx:602 -#: src/pages/stock/StockDetail.tsx:607 +#: src/pages/stock/StockDetail.tsx:608 #: src/tables/sales/ReturnOrderLineItemTable.tsx:94 #: src/tables/stock/StockTrackingTable.tsx:45 msgid "Stock Item" msgstr "" -#: src/components/render/ModelType.tsx:216 +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 msgid "Stock Location" msgstr "" -#: src/components/render/ModelType.tsx:218 +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 msgid "Stock Location Type" msgstr "" -#: src/components/render/ModelType.tsx:220 +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 msgid "Stock History" msgstr "" -#: src/components/render/ModelType.tsx:222 -#: src/pages/stock/StockDetail.tsx:209 -#: src/tables/build/BuildAllocatedStockTable.tsx:64 -#: src/tables/stock/StockTrackingTable.tsx:96 -msgid "Build Order" +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" msgstr "" -#: src/components/render/ModelType.tsx:224 +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 msgid "Build Line" msgstr "" -#: src/components/render/ModelType.tsx:226 +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 msgid "Build Item" msgstr "" -#: src/components/render/ModelType.tsx:228 -#: src/pages/company/CompanyDetail.tsx:337 +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 msgid "Company" msgstr "" -#: src/components/render/ModelType.tsx:230 +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 #: src/tables/TableHoverCard.tsx:81 #: src/tables/build/BuildOrderTable.tsx:132 #: src/tables/purchasing/PurchaseOrderTable.tsx:64 @@ -1516,263 +1593,193 @@ msgstr "" msgid "Project Code" msgstr "" -#: src/components/render/ModelType.tsx:232 +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 #: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:463 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 #: src/tables/part/PartPurchaseOrdersTable.tsx:32 #: src/tables/stock/StockTrackingTable.tsx:107 msgid "Purchase Order" msgstr "" -#: src/components/render/ModelType.tsx:234 -msgid "Purchase Order Line Item" +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" msgstr "" -#: src/components/render/ModelType.tsx:236 -#: src/pages/build/BuildDetail.tsx:148 -#: src/pages/sales/SalesOrderDetail.tsx:503 -#: src/pages/stock/StockDetail.tsx:217 +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 #: src/tables/sales/SalesOrderAllocationTable.tsx:50 #: src/tables/stock/StockTrackingTable.tsx:118 msgid "Sales Order" msgstr "" -#: src/components/render/ModelType.tsx:238 +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 msgid "Sales Order Shipment" msgstr "" -#: src/components/render/ModelType.tsx:240 -#: src/pages/sales/ReturnOrderDetail.tsx:452 +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 #: src/tables/stock/StockTrackingTable.tsx:129 msgid "Return Order" msgstr "" -#: src/components/render/ModelType.tsx:242 +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 msgid "Return Order Line Item" msgstr "" -#: src/components/render/ModelType.tsx:244 +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 #: src/tables/company/AddressTable.tsx:48 msgid "Address" msgstr "" -#: src/components/render/ModelType.tsx:246 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:190 -#: src/pages/sales/ReturnOrderDetail.tsx:169 -#: src/pages/sales/SalesOrderDetail.tsx:178 +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 msgid "Contact" msgstr "" -#: src/components/render/ModelType.tsx:248 +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 msgid "Owner" msgstr "" -#: src/components/render/ModelType.tsx:250 +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 #: src/tables/settings/ImportSessionTable.tsx:121 #: src/tables/stock/StockItemTestResultTable.tsx:204 #: src/tables/stock/StockTrackingTable.tsx:195 msgid "User" msgstr "" -#: src/components/render/ModelType.tsx:252 -msgid "Group" -msgstr "" - -#: src/components/render/ModelType.tsx:254 -msgid "Import Session" -msgstr "" - -#: src/components/render/ModelType.tsx:256 -msgid "Label Template" -msgstr "" - -#: src/components/render/ModelType.tsx:258 -msgid "Report Template" -msgstr "" - -#: src/components/render/ModelType.tsx:260 -msgid "Plugin Configuration" -msgstr "" - -#: src/components/render/ModelType.tsx:262 -msgid "Content Type" -msgstr "" - -#: src/components/render/ModelType.tsx:264 -msgid "Unknown Model" -msgstr "" - -#: src/components/render/ModelType.tsx:275 -#: src/defaults/links.tsx:29 -#: src/defaults/menuItems.tsx:33 -#: src/pages/Index/Settings/SystemSettings.tsx:171 -#: src/pages/part/CategoryDetail.tsx:118 -#: src/pages/part/CategoryDetail.tsx:242 -#: src/pages/part/CategoryDetail.tsx:272 -#: src/pages/part/PartDetail.tsx:835 -msgid "Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:277 -msgid "Part Parameter Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:279 -msgid "Part Test Templates" -msgstr "" - -#: src/components/render/ModelType.tsx:281 -msgid "Supplier Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:283 -msgid "Manufacturer Parts" -msgstr "" - -#: src/components/render/ModelType.tsx:285 -#: src/pages/part/CategoryDetail.tsx:256 -#: src/pages/part/CategoryDetail.tsx:294 -#: src/pages/part/PartDetail.tsx:1069 -msgid "Part Categories" -msgstr "" - -#: src/components/render/ModelType.tsx:287 -#: src/pages/company/CompanyDetail.tsx:202 -#: src/pages/stock/LocationDetail.tsx:121 -#: src/pages/stock/LocationDetail.tsx:174 -#: src/pages/stock/LocationDetail.tsx:379 -msgid "Stock Items" -msgstr "" - -#: src/components/render/ModelType.tsx:289 -#: src/pages/stock/LocationDetail.tsx:188 -#: src/pages/stock/LocationDetail.tsx:371 -#: src/pages/stock/StockDetail.tsx:599 -msgid "Stock Locations" -msgstr "" - -#: src/components/render/ModelType.tsx:291 -msgid "Stock Location Types" -msgstr "" - -#: src/components/render/ModelType.tsx:293 -msgid "Stock Histories" -msgstr "" - -#: src/components/render/ModelType.tsx:295 -#: src/pages/Index/Settings/SystemSettings.tsx:236 -#: src/pages/build/BuildDetail.tsx:534 -#: src/pages/build/BuildIndex.tsx:22 -#: src/pages/part/PartDetail.tsx:624 -#: src/pages/sales/SalesOrderDetail.tsx:328 -msgid "Build Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:297 -msgid "Build Lines" -msgstr "" - -#: src/components/render/ModelType.tsx:299 -msgid "Build Items" -msgstr "" - -#: src/components/render/ModelType.tsx:301 -msgid "Companies" -msgstr "" - -#: src/components/render/ModelType.tsx:303 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:132 -msgid "Project Codes" -msgstr "" - -#: src/components/render/ModelType.tsx:305 -#: src/pages/Index/Settings/SystemSettings.tsx:254 -#: src/pages/company/CompanyDetail.tsx:195 -#: src/pages/company/SupplierPartDetail.tsx:232 -#: src/pages/part/PartDetail.tsx:670 -#: src/pages/purchasing/PurchasingIndex.tsx:25 -msgid "Purchase Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:307 -msgid "Purchase Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:309 -#: src/pages/Index/Settings/SystemSettings.tsx:269 -#: src/pages/company/CompanyDetail.tsx:215 -#: src/pages/part/PartDetail.tsx:677 -#: src/pages/sales/SalesIndex.tsx:26 -msgid "Sales Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:311 -msgid "Sales Order Shipments" -msgstr "" - -#: src/components/render/ModelType.tsx:313 -#: src/pages/Index/Settings/SystemSettings.tsx:285 -#: src/pages/company/CompanyDetail.tsx:222 -#: src/pages/sales/SalesIndex.tsx:32 -msgid "Return Orders" -msgstr "" - -#: src/components/render/ModelType.tsx:315 -msgid "Return Order Line Items" -msgstr "" - -#: src/components/render/ModelType.tsx:317 -#: src/pages/company/CompanyDetail.tsx:252 -msgid "Addresses" -msgstr "" - -#: src/components/render/ModelType.tsx:319 -#: src/pages/company/CompanyDetail.tsx:246 -msgid "Contacts" -msgstr "" - -#: src/components/render/ModelType.tsx:321 -msgid "Owners" -msgstr "" - -#: src/components/render/ModelType.tsx:323 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:102 +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 msgid "Users" msgstr "" -#: src/components/render/ModelType.tsx:325 +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 #: src/tables/settings/UserTable.tsx:138 #: src/tables/settings/UserTable.tsx:201 msgid "Groups" msgstr "" -#: src/components/render/ModelType.tsx:327 +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 msgid "Import Sessions" msgstr "" -#: src/components/render/ModelType.tsx:329 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:168 +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 msgid "Label Templates" msgstr "" -#: src/components/render/ModelType.tsx:331 -#: src/pages/Index/Settings/AdminCenter/Index.tsx:174 +#: src/components/render/ModelType.tsx:234 +#~ msgid "Purchase Order Line Item" +#~ msgstr "Purchase Order Line Item" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 msgid "Report Templates" msgstr "" -#: src/components/render/ModelType.tsx:333 +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 msgid "Plugin Configurations" msgstr "" -#: src/components/render/ModelType.tsx:335 +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 msgid "Content Types" msgstr "" +#: src/components/render/ModelType.tsx:264 +#~ msgid "Unknown Model" +#~ msgstr "Unknown Model" + +#: src/components/render/ModelType.tsx:307 +#~ msgid "Purchase Order Line Items" +#~ msgstr "Purchase Order Line Items" + #: src/components/render/ModelType.tsx:337 -msgid "Unknown Models" -msgstr "" +#~ msgid "Unknown Models" +#~ msgstr "Unknown Models" #: src/components/render/Order.tsx:121 msgid "Shipment" @@ -1780,9 +1787,9 @@ msgstr "" #: src/components/render/Part.tsx:25 #: src/components/render/Plugin.tsx:17 -#: src/pages/company/CompanyDetail.tsx:323 -#: src/pages/company/SupplierPartDetail.tsx:340 -#: src/pages/part/PartDetail.tsx:896 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 msgid "Inactive" msgstr "" @@ -1795,17 +1802,17 @@ msgstr "" #: src/components/render/Part.tsx:30 #: src/defaults/links.tsx:30 #: src/defaults/menuItems.tsx:38 -#: src/pages/Index/Settings/SystemSettings.tsx:204 -#: src/pages/part/PartDetail.tsx:550 -#: src/pages/stock/LocationDetail.tsx:351 -#: src/pages/stock/StockDetail.tsx:407 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 #: src/tables/stock/StockItemTable.tsx:68 msgid "Stock" msgstr "" #: src/components/render/Stock.tsx:61 -#: src/pages/stock/StockDetail.tsx:146 -#: src/pages/stock/StockDetail.tsx:564 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 #: src/tables/build/BuildAllocatedStockTable.tsx:102 #: src/tables/sales/SalesOrderAllocationTable.tsx:80 msgid "Serial Number" @@ -1818,8 +1825,8 @@ msgstr "" #: src/pages/part/pricing/BomPricingPanel.tsx:109 #: src/pages/part/pricing/PriceBreakPanel.tsx:89 #: src/pages/part/pricing/PriceBreakPanel.tsx:171 -#: src/pages/stock/StockDetail.tsx:141 -#: src/pages/stock/StockDetail.tsx:570 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 #: src/tables/build/BuildOrderTestTable.tsx:198 #: src/tables/part/PartPurchaseOrdersTable.tsx:92 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 @@ -2183,14 +2190,6 @@ msgstr "" #~ msgid "user deleted" #~ msgstr "user deleted" -#: src/components/tables/settings/UserTable.tsx:168 -#~ msgid "First Name" -#~ msgstr "First Name" - -#: src/components/tables/settings/UserTable.tsx:173 -#~ msgid "Last Name" -#~ msgstr "Last Name" - #: src/components/tables/stock/StockItemTable.tsx:247 #~ msgid "Test Filter" #~ msgstr "Test Filter" @@ -2204,17 +2203,17 @@ msgstr "" #~ msgstr "Stock location updated" #: src/components/widgets/DisplayWidget.tsx:11 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:17 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 msgid "Display Settings" msgstr "" #: src/components/widgets/DisplayWidget.tsx:15 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:23 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 msgid "Color Mode" msgstr "" #: src/components/widgets/DisplayWidget.tsx:21 -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:33 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 msgid "Language" msgstr "" @@ -2420,7 +2419,7 @@ msgstr "" #: src/defaults/links.tsx:28 #: src/defaults/menuItems.tsx:28 #: src/pages/Index/Dashboard.tsx:19 -#: src/pages/Index/Settings/UserSettings.tsx:46 +#: src/pages/Index/Settings/UserSettings.tsx:47 msgid "Dashboard" msgstr "" @@ -2548,7 +2547,7 @@ msgstr "" #~ msgstr "Local Server" #: src/defaults/links.tsx:12 -#: src/pages/company/CompanyDetail.tsx:95 +#: src/pages/company/CompanyDetail.tsx:97 msgid "Website" msgstr "" @@ -2560,18 +2559,13 @@ msgstr "" msgid "Demo" msgstr "" -#: src/defaults/links.tsx:31 -#: src/defaults/menuItems.tsx:43 -msgid "Build" -msgstr "" - #: src/defaults/links.tsx:33 #: src/defaults/menuItems.tsx:48 #: src/pages/company/ManufacturerDetail.tsx:9 -#: src/pages/company/ManufacturerPartDetail.tsx:261 +#: src/pages/company/ManufacturerPartDetail.tsx:262 #: src/pages/company/SupplierDetail.tsx:9 -#: src/pages/company/SupplierPartDetail.tsx:327 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:466 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 #: src/pages/purchasing/PurchasingIndex.tsx:60 msgid "Purchasing" msgstr "" @@ -2579,9 +2573,9 @@ msgstr "" #: src/defaults/links.tsx:37 #: src/defaults/menuItems.tsx:53 #: src/pages/company/CustomerDetail.tsx:9 -#: src/pages/sales/ReturnOrderDetail.tsx:457 +#: src/pages/sales/ReturnOrderDetail.tsx:458 #: src/pages/sales/SalesIndex.tsx:53 -#: src/pages/sales/SalesOrderDetail.tsx:508 +#: src/pages/sales/SalesOrderDetail.tsx:509 msgid "Sales" msgstr "" @@ -2818,7 +2812,7 @@ msgid "Remove line" msgstr "" #: src/forms/BuildForms.tsx:631 -#: src/pages/build/BuildDetail.tsx:200 +#: src/pages/build/BuildDetail.tsx:201 msgid "Source Location" msgstr "" @@ -2917,7 +2911,7 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/stock/StockDetail.tsx:177 +#: src/pages/stock/StockDetail.tsx:178 #: src/tables/ColumnRenderers.tsx:49 #: src/tables/stock/StockTrackingTable.tsx:85 msgid "Location" @@ -2936,9 +2930,9 @@ msgid "Store with already received stock" msgstr "" #: src/forms/PurchaseOrderForms.tsx:521 -#: src/pages/build/BuildDetail.tsx:214 -#: src/pages/stock/StockDetail.tsx:158 -#: src/pages/stock/StockDetail.tsx:582 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 #: src/tables/build/BuildAllocatedStockTable.tsx:109 #: src/tables/build/BuildOrderTestTable.tsx:189 #: src/tables/sales/SalesOrderAllocationTable.tsx:87 @@ -2951,18 +2945,18 @@ msgstr "" #: src/forms/PurchaseOrderForms.tsx:543 #: src/forms/StockForms.tsx:428 -#: src/pages/company/SupplierPartDetail.tsx:151 -#: src/pages/company/SupplierPartDetail.tsx:202 -#: src/pages/stock/StockDetail.tsx:240 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 msgid "Packaging" msgstr "" #: src/forms/PurchaseOrderForms.tsx:556 -#: src/pages/build/BuildDetail.tsx:104 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:143 -#: src/pages/sales/ReturnOrderDetail.tsx:116 -#: src/pages/sales/SalesOrderDetail.tsx:122 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 #: src/tables/build/BuildOrderTable.tsx:114 #: src/tables/machine/MachineListTable.tsx:334 #: src/tables/part/PartPurchaseOrdersTable.tsx:37 @@ -2978,13 +2972,13 @@ msgid "Status" msgstr "" #: src/forms/PurchaseOrderForms.tsx:565 -#: src/pages/company/SupplierPartDetail.tsx:105 +#: src/pages/company/SupplierPartDetail.tsx:106 #: src/tables/ColumnRenderers.tsx:132 msgid "Note" msgstr "" #: src/forms/PurchaseOrderForms.tsx:641 -#: src/pages/company/SupplierPartDetail.tsx:123 +#: src/pages/company/SupplierPartDetail.tsx:124 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 msgid "SKU" msgstr "" @@ -3039,7 +3033,7 @@ msgid "Enter serial numbers for new stock (or leave blank)" msgstr "" #: src/forms/StockForms.tsx:147 -#: src/pages/stock/StockDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:112 msgid "Stock Status" msgstr "" @@ -3048,7 +3042,7 @@ msgstr "" #~ msgstr "Stock item updated" #: src/forms/StockForms.tsx:186 -#: src/pages/stock/StockDetail.tsx:430 +#: src/pages/stock/StockDetail.tsx:431 #: src/tables/stock/StockItemTable.tsx:417 #: src/tables/stock/StockItemTable.tsx:535 msgid "Add Stock Item" @@ -3070,8 +3064,8 @@ msgstr "" #: src/forms/StockForms.tsx:643 #: src/forms/StockForms.tsx:685 #: src/forms/StockForms.tsx:723 -#: src/pages/part/PartDetail.tsx:230 -#: src/pages/part/PartDetail.tsx:854 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 #: src/tables/stock/StockItemTable.tsx:325 msgid "In Stock" msgstr "" @@ -3081,14 +3075,14 @@ msgid "Move" msgstr "" #: src/forms/StockForms.tsx:549 -#: src/pages/stock/StockDetail.tsx:502 +#: src/pages/stock/StockDetail.tsx:503 #: src/tables/stock/StockItemTestResultTable.tsx:346 msgid "Add" msgstr "" #: src/forms/StockForms.tsx:577 #: src/pages/Index/Scan.tsx:280 -#: src/pages/stock/StockDetail.tsx:492 +#: src/pages/stock/StockDetail.tsx:493 msgid "Count" msgstr "" @@ -3101,12 +3095,16 @@ msgid "Remove Stock" msgstr "" #: src/forms/StockForms.tsx:843 -#: src/pages/part/PartDetail.tsx:1024 +#: src/pages/part/PartDetail.tsx:1025 msgid "Transfer Stock" msgstr "" #: src/forms/StockForms.tsx:852 -#: src/pages/part/PartDetail.tsx:1013 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 msgid "Count Stock" msgstr "" @@ -3610,16 +3608,45 @@ msgstr "" msgid "Select Camera" msgstr "" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 -msgid "Account Details" +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +#~ msgid "Account Details" +#~ msgstr "Account Details" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 -msgid "First name" +#~ msgid "First name" +#~ msgstr "First name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:55 -msgid "Last name" +#~ msgid "Last name" +#~ msgstr "Last name" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" msgstr "" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:58 @@ -3631,15 +3658,28 @@ msgstr "" #~ msgstr "Last name: {0}" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 -msgid "First name:" -msgstr "" +#~ msgid "First name:" +#~ msgstr "First name:" #: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:71 -msgid "Last name:" +#~ msgid "Last name:" +#~ msgstr "Last name:" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" msgstr "" -#: src/pages/Index/Settings/AccountSettings/DisplaySettingsPanel.tsx:41 -msgid "Use pseudo language" +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 @@ -3737,7 +3777,7 @@ msgid "No tokens configured" msgstr "" #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 -#: src/pages/part/PartDetail.tsx:304 +#: src/pages/part/PartDetail.tsx:305 #: src/tables/bom/UsedInTable.tsx:84 #: src/tables/build/BuildOrderTable.tsx:109 #: src/tables/company/CompanyTable.tsx:61 @@ -3749,7 +3789,7 @@ msgstr "" #: src/tables/part/PartVariantTable.tsx:15 #: src/tables/plugin/PluginListTable.tsx:149 #: src/tables/plugin/PluginListTable.tsx:271 -#: src/tables/plugin/PluginListTable.tsx:563 +#: src/tables/plugin/PluginListTable.tsx:561 #: src/tables/purchasing/SupplierPartTable.tsx:98 #: src/tables/purchasing/SupplierPartTable.tsx:187 #: src/tables/settings/UserTable.tsx:284 @@ -3766,38 +3806,62 @@ msgid "Last Seen" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:65 -msgid "bars" -msgstr "" +#~ msgid "bars" +#~ msgstr "bars" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:66 -msgid "oval" -msgstr "" +#~ msgid "oval" +#~ msgstr "oval" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:67 -msgid "dots" -msgstr "" +#~ msgid "dots" +#~ msgstr "dots" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:81 -msgid "Theme" -msgstr "" +#~ msgid "Theme" +#~ msgstr "Theme" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:87 -msgid "Primary color" +#~ msgid "Primary color" +#~ msgstr "Primary color" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:100 -msgid "White color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 -msgid "Black color" +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" msgstr "" #: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 msgid "Border Radius" msgstr "" -#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:132 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 msgid "Loader" msgstr "" @@ -3838,19 +3902,19 @@ msgstr "" msgid "Base currency" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:108 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 msgid "Data Import" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:114 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 msgid "Background Tasks" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:120 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 msgid "Error Reports" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:126 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 msgid "Currencies" msgstr "" @@ -3858,20 +3922,21 @@ msgstr "" #~ msgid "Templates" #~ msgstr "Templates" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:144 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 msgid "Custom States" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:150 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 msgid "Custom Units" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:156 -#: src/pages/part/CategoryDetail.tsx:262 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 msgid "Part Parameters" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:162 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 msgid "Category Parameters" msgstr "" @@ -3879,24 +3944,24 @@ msgstr "" #~ msgid "Location types" #~ msgstr "Location types" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:180 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 msgid "Location Types" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:192 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 #: src/tables/machine/MachineTypeTable.tsx:287 msgid "Machines" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:202 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 msgid "Quick Actions" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:207 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 msgid "Add a new user" msgstr "" -#: src/pages/Index/Settings/AdminCenter/Index.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 msgid "Advanced Options" msgstr "" @@ -3912,19 +3977,19 @@ msgstr "" msgid "There are no machine registry errors." msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:28 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 #: src/tables/settings/UserTable.tsx:119 msgid "Info" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 -msgid "External plugins are not enabled for this InvenTree installation." -msgstr "" - #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:33 #~ msgid "Plugin Error Stack" #~ msgstr "Plugin Error Stack" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + #: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 #~ msgid "Warning" #~ msgstr "Warning" @@ -3933,12 +3998,12 @@ msgstr "" #~ msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." #~ msgstr "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:50 -msgid "Plugin Errors" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" msgstr "" -#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:59 -msgid "Plugin Settings" +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" msgstr "" #: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 @@ -4017,6 +4082,18 @@ msgstr "" #~ msgid "Stock location" #~ msgstr "Stock location" +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 msgid "Select settings relevant for user lifecycle. More available in" msgstr "" @@ -4025,15 +4102,15 @@ msgstr "" msgid "System settings" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:67 +#: src/pages/Index/Settings/SystemSettings.tsx:68 msgid "Login" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:94 msgid "Barcodes" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:115 +#: src/pages/Index/Settings/SystemSettings.tsx:116 msgid "Pricing" msgstr "" @@ -4045,41 +4122,49 @@ msgstr "" #~ msgid "Exchange Rates" #~ msgstr "Exchange Rates" -#: src/pages/Index/Settings/SystemSettings.tsx:150 +#: src/pages/Index/Settings/SystemSettings.tsx:151 msgid "Labels" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:156 -#: src/pages/Index/Settings/UserSettings.tsx:132 +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 msgid "Reporting" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:230 -#: src/pages/part/PartDetail.tsx:690 +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 msgid "Stocktake" msgstr "" -#: src/pages/Index/Settings/SystemSettings.tsx:317 +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 msgid "Switch to User Setting" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:34 +#: src/pages/Index/Settings/UserSettings.tsx:35 msgid "Account" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:40 +#: src/pages/Index/Settings/UserSettings.tsx:41 msgid "Security" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:78 +#: src/pages/Index/Settings/UserSettings.tsx:79 msgid "Display Options" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:150 +#: src/pages/Index/Settings/UserSettings.tsx:151 msgid "Account Settings" msgstr "" -#: src/pages/Index/Settings/UserSettings.tsx:158 +#: src/pages/Index/Settings/UserSettings.tsx:159 msgid "Switch to System Setting" msgstr "" @@ -4115,8 +4200,8 @@ msgstr "" #~ msgid "Build Status" #~ msgstr "Build Status" -#: src/pages/build/BuildDetail.tsx:97 -#: src/pages/part/PartDetail.tsx:150 +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 #: src/tables/bom/BomTable.tsx:118 #: src/tables/bom/UsedInTable.tsx:39 #: src/tables/build/BuildLineTable.tsx:184 @@ -4126,26 +4211,26 @@ msgstr "" msgid "IPN" msgstr "" -#: src/pages/build/BuildDetail.tsx:110 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:116 -#: src/pages/sales/ReturnOrderDetail.tsx:90 -#: src/pages/sales/SalesOrderDetail.tsx:96 +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 #: src/tables/ColumnRenderers.tsx:121 #: src/tables/build/BuildAllocatedStockTable.tsx:90 #: src/tables/build/BuildLineTable.tsx:195 msgid "Reference" msgstr "" -#: src/pages/build/BuildDetail.tsx:116 -#: src/pages/company/CompanyDetail.tsx:89 -#: src/pages/company/ManufacturerPartDetail.tsx:82 -#: src/pages/company/SupplierPartDetail.tsx:91 -#: src/pages/part/CategoryDetail.tsx:100 -#: src/pages/part/PartDetail.tsx:157 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:137 -#: src/pages/sales/ReturnOrderDetail.tsx:110 -#: src/pages/sales/SalesOrderDetail.tsx:116 -#: src/pages/stock/LocationDetail.tsx:102 +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 #: src/tables/ColumnRenderers.tsx:81 #: src/tables/bom/UsedInTable.tsx:44 #: src/tables/build/BuildAllocatedStockTable.tsx:70 @@ -4163,29 +4248,29 @@ msgstr "" msgid "Description" msgstr "" -#: src/pages/build/BuildDetail.tsx:124 +#: src/pages/build/BuildDetail.tsx:125 msgid "Parent Build" msgstr "" -#: src/pages/build/BuildDetail.tsx:135 +#: src/pages/build/BuildDetail.tsx:136 msgid "Build Quantity" msgstr "" -#: src/pages/build/BuildDetail.tsx:143 -#: src/pages/build/BuildDetail.tsx:269 +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 msgid "Completed Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:160 +#: src/pages/build/BuildDetail.tsx:161 #: src/tables/build/BuildOrderTable.tsx:143 msgid "Issued By" msgstr "" -#: src/pages/build/BuildDetail.tsx:167 -#: src/pages/part/PartDetail.tsx:372 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:215 -#: src/pages/sales/ReturnOrderDetail.tsx:194 -#: src/pages/sales/SalesOrderDetail.tsx:203 +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 #: src/tables/build/BuildOrderTable.tsx:149 #: src/tables/purchasing/PurchaseOrderTable.tsx:75 #: src/tables/sales/ReturnOrderTable.tsx:66 @@ -4193,15 +4278,15 @@ msgstr "" msgid "Responsible" msgstr "" -#: src/pages/build/BuildDetail.tsx:174 +#: src/pages/build/BuildDetail.tsx:175 #: src/tables/settings/PendingTasksTable.tsx:32 msgid "Created" msgstr "" -#: src/pages/build/BuildDetail.tsx:181 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:208 -#: src/pages/sales/ReturnOrderDetail.tsx:187 -#: src/pages/sales/SalesOrderDetail.tsx:196 +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 #: src/tables/ColumnRenderers.tsx:212 #: src/tables/part/PartPurchaseOrdersTable.tsx:99 #: src/tables/sales/ReturnOrderLineItemTable.tsx:110 @@ -4215,7 +4300,7 @@ msgstr "" #~ msgid "View part barcode" #~ msgstr "View part barcode" -#: src/pages/build/BuildDetail.tsx:188 +#: src/pages/build/BuildDetail.tsx:189 msgid "Completed" msgstr "" @@ -4229,7 +4314,7 @@ msgstr "" #~ msgid "Unlink custom barcode from part" #~ msgstr "Unlink custom barcode from part" -#: src/pages/build/BuildDetail.tsx:201 +#: src/pages/build/BuildDetail.tsx:202 msgid "Any location" msgstr "" @@ -4237,7 +4322,7 @@ msgstr "" #~ msgid "Build Order updated" #~ msgstr "Build Order updated" -#: src/pages/build/BuildDetail.tsx:208 +#: src/pages/build/BuildDetail.tsx:209 msgid "Destination Location" msgstr "" @@ -4253,69 +4338,69 @@ msgstr "" #~ msgid "Delete build order" #~ msgstr "Delete build order" -#: src/pages/build/BuildDetail.tsx:246 +#: src/pages/build/BuildDetail.tsx:247 msgid "Build Details" msgstr "" -#: src/pages/build/BuildDetail.tsx:252 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:253 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:262 -#: src/pages/sales/ReturnOrderDetail.tsx:125 -#: src/pages/sales/ReturnOrderDetail.tsx:232 -#: src/pages/sales/ReturnOrderDetail.tsx:241 -#: src/pages/sales/SalesOrderDetail.tsx:267 -#: src/pages/sales/SalesOrderDetail.tsx:276 +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 msgid "Line Items" msgstr "" -#: src/pages/build/BuildDetail.tsx:262 +#: src/pages/build/BuildDetail.tsx:263 msgid "Incomplete Outputs" msgstr "" -#: src/pages/build/BuildDetail.tsx:284 -#: src/pages/sales/SalesOrderDetail.tsx:314 +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 msgid "Allocated Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:294 +#: src/pages/build/BuildDetail.tsx:295 msgid "Consumed Stock" msgstr "" -#: src/pages/build/BuildDetail.tsx:308 +#: src/pages/build/BuildDetail.tsx:309 msgid "Child Build Orders" msgstr "" -#: src/pages/build/BuildDetail.tsx:318 +#: src/pages/build/BuildDetail.tsx:319 #: src/tables/build/BuildOutputTable.tsx:384 #: src/tables/stock/StockItemTestResultTable.tsx:156 msgid "Test Results" msgstr "" -#: src/pages/build/BuildDetail.tsx:329 -#: src/pages/part/PartDetail.tsx:707 +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 msgid "Test Statistics" msgstr "" -#: src/pages/build/BuildDetail.tsx:343 -#: src/pages/company/CompanyDetail.tsx:258 -#: src/pages/company/ManufacturerPartDetail.tsx:178 -#: src/pages/part/PartDetail.tsx:729 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:304 -#: src/pages/sales/ReturnOrderDetail.tsx:269 -#: src/pages/sales/SalesOrderDetail.tsx:338 -#: src/pages/stock/StockDetail.tsx:381 +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 msgid "Attachments" msgstr "" -#: src/pages/build/BuildDetail.tsx:351 -#: src/pages/company/CompanyDetail.tsx:269 -#: src/pages/company/ManufacturerPartDetail.tsx:189 -#: src/pages/company/SupplierPartDetail.tsx:252 -#: src/pages/part/PartDetail.tsx:737 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:315 -#: src/pages/sales/ReturnOrderDetail.tsx:280 -#: src/pages/sales/SalesOrderDetail.tsx:349 -#: src/pages/stock/StockDetail.tsx:392 +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 #: src/tables/build/BuildOrderTestTable.tsx:143 #: src/tables/stock/StockTrackingTable.tsx:189 msgid "Notes" @@ -4325,7 +4410,7 @@ msgstr "" #~ msgid "Reporting Actions" #~ msgstr "Reporting Actions" -#: src/pages/build/BuildDetail.tsx:369 +#: src/pages/build/BuildDetail.tsx:370 msgid "Edit Build Order" msgstr "" @@ -4333,126 +4418,126 @@ msgstr "" #~ msgid "Print build report" #~ msgstr "Print build report" -#: src/pages/build/BuildDetail.tsx:376 +#: src/pages/build/BuildDetail.tsx:377 #: src/tables/build/BuildOrderTable.tsx:164 #: src/tables/build/BuildOrderTable.tsx:179 msgid "Add Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:391 msgid "Cancel Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:392 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 -#: src/pages/sales/SalesOrderDetail.tsx:375 +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 msgid "Order cancelled" msgstr "" -#: src/pages/build/BuildDetail.tsx:393 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:342 -#: src/pages/sales/ReturnOrderDetail.tsx:341 -#: src/pages/sales/SalesOrderDetail.tsx:374 +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 msgid "Cancel this order" msgstr "" -#: src/pages/build/BuildDetail.tsx:402 +#: src/pages/build/BuildDetail.tsx:403 msgid "Hold Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:404 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:350 -#: src/pages/sales/ReturnOrderDetail.tsx:349 -#: src/pages/sales/SalesOrderDetail.tsx:382 -msgid "Place this order on hold" -msgstr "" - #: src/pages/build/BuildDetail.tsx:405 #: src/pages/purchasing/PurchaseOrderDetail.tsx:351 #: src/pages/sales/ReturnOrderDetail.tsx:350 #: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 msgid "Order placed on hold" msgstr "" -#: src/pages/build/BuildDetail.tsx:410 +#: src/pages/build/BuildDetail.tsx:411 msgid "Issue Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:412 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:334 -#: src/pages/sales/ReturnOrderDetail.tsx:333 -#: src/pages/sales/SalesOrderDetail.tsx:366 -msgid "Issue this order" -msgstr "" - #: src/pages/build/BuildDetail.tsx:413 #: src/pages/purchasing/PurchaseOrderDetail.tsx:335 #: src/pages/sales/ReturnOrderDetail.tsx:334 #: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 msgid "Order issued" msgstr "" -#: src/pages/build/BuildDetail.tsx:418 +#: src/pages/build/BuildDetail.tsx:419 msgid "Complete Build Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:420 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:363 -#: src/pages/sales/ReturnOrderDetail.tsx:357 -#: src/pages/sales/SalesOrderDetail.tsx:390 +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 msgid "Mark this order as complete" msgstr "" -#: src/pages/build/BuildDetail.tsx:421 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 -#: src/pages/sales/ReturnOrderDetail.tsx:358 -#: src/pages/sales/SalesOrderDetail.tsx:391 +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 msgid "Order completed" msgstr "" -#: src/pages/build/BuildDetail.tsx:452 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:386 -#: src/pages/sales/ReturnOrderDetail.tsx:387 -#: src/pages/sales/SalesOrderDetail.tsx:420 +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 msgid "Issue Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:459 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:393 -#: src/pages/sales/ReturnOrderDetail.tsx:394 -#: src/pages/sales/SalesOrderDetail.tsx:434 +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 msgid "Complete Order" msgstr "" -#: src/pages/build/BuildDetail.tsx:477 +#: src/pages/build/BuildDetail.tsx:478 msgid "Build Order Actions" msgstr "" -#: src/pages/build/BuildDetail.tsx:482 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:415 -#: src/pages/sales/ReturnOrderDetail.tsx:416 -#: src/pages/sales/SalesOrderDetail.tsx:457 +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 msgid "Edit order" msgstr "" -#: src/pages/build/BuildDetail.tsx:486 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:423 -#: src/pages/sales/ReturnOrderDetail.tsx:422 -#: src/pages/sales/SalesOrderDetail.tsx:462 +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 msgid "Duplicate order" msgstr "" -#: src/pages/build/BuildDetail.tsx:490 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:426 -#: src/pages/sales/ReturnOrderDetail.tsx:427 -#: src/pages/sales/SalesOrderDetail.tsx:465 +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 msgid "Hold order" msgstr "" -#: src/pages/build/BuildDetail.tsx:495 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:431 -#: src/pages/sales/ReturnOrderDetail.tsx:432 -#: src/pages/sales/SalesOrderDetail.tsx:470 +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 msgid "Cancel order" msgstr "" @@ -4464,24 +4549,24 @@ msgstr "" #~ msgid "New Build Order" #~ msgstr "New Build Order" -#: src/pages/company/CompanyDetail.tsx:103 +#: src/pages/company/CompanyDetail.tsx:105 msgid "Phone Number" msgstr "" -#: src/pages/company/CompanyDetail.tsx:110 +#: src/pages/company/CompanyDetail.tsx:112 msgid "Email Address" msgstr "" -#: src/pages/company/CompanyDetail.tsx:120 +#: src/pages/company/CompanyDetail.tsx:122 msgid "Default Currency" msgstr "" -#: src/pages/company/CompanyDetail.tsx:125 +#: src/pages/company/CompanyDetail.tsx:127 #: src/pages/company/SupplierDetail.tsx:8 -#: src/pages/company/SupplierPartDetail.tsx:115 -#: src/pages/company/SupplierPartDetail.tsx:201 -#: src/pages/company/SupplierPartDetail.tsx:331 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:131 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 #: src/tables/company/CompanyTable.tsx:100 #: src/tables/part/PartPurchaseOrdersTable.tsx:42 #: src/tables/purchasing/PurchaseOrderTable.tsx:88 @@ -4489,21 +4574,21 @@ msgstr "" msgid "Supplier" msgstr "" -#: src/pages/company/CompanyDetail.tsx:131 +#: src/pages/company/CompanyDetail.tsx:133 #: src/pages/company/ManufacturerDetail.tsx:8 -#: src/pages/company/ManufacturerPartDetail.tsx:100 -#: src/pages/company/ManufacturerPartDetail.tsx:265 -#: src/pages/company/SupplierPartDetail.tsx:130 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 #: src/tables/company/CompanyTable.tsx:105 msgid "Manufacturer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:137 +#: src/pages/company/CompanyDetail.tsx:139 #: src/pages/company/CustomerDetail.tsx:8 #: src/pages/part/pricing/SaleHistoryPanel.tsx:29 -#: src/pages/sales/ReturnOrderDetail.tsx:104 -#: src/pages/sales/SalesOrderDetail.tsx:110 -#: src/pages/stock/StockDetail.tsx:226 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 #: src/tables/company/CompanyTable.tsx:110 #: src/tables/sales/ReturnOrderTable.tsx:78 #: src/tables/sales/SalesOrderTable.tsx:108 @@ -4511,7 +4596,7 @@ msgstr "" msgid "Customer" msgstr "" -#: src/pages/company/CompanyDetail.tsx:171 +#: src/pages/company/CompanyDetail.tsx:173 #: src/tables/stock/StockTrackingTable.tsx:183 msgid "Details" msgstr "" @@ -4520,11 +4605,11 @@ msgstr "" #~ msgid "Edit company" #~ msgstr "Edit company" -#: src/pages/company/CompanyDetail.tsx:177 +#: src/pages/company/CompanyDetail.tsx:179 msgid "Manufactured Parts" msgstr "" -#: src/pages/company/CompanyDetail.tsx:186 +#: src/pages/company/CompanyDetail.tsx:188 msgid "Supplied Parts" msgstr "" @@ -4532,84 +4617,84 @@ msgstr "" #~ msgid "Delete company" #~ msgstr "Delete company" -#: src/pages/company/CompanyDetail.tsx:231 +#: src/pages/company/CompanyDetail.tsx:233 msgid "Assigned Stock" msgstr "" -#: src/pages/company/CompanyDetail.tsx:289 +#: src/pages/company/CompanyDetail.tsx:291 #: src/tables/company/CompanyTable.tsx:86 msgid "Edit Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:297 +#: src/pages/company/CompanyDetail.tsx:299 msgid "Delete Company" msgstr "" -#: src/pages/company/CompanyDetail.tsx:305 +#: src/pages/company/CompanyDetail.tsx:307 msgid "Company Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:75 -#: src/pages/company/SupplierPartDetail.tsx:84 +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 msgid "Internal Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:90 -#: src/pages/company/SupplierPartDetail.tsx:98 +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 msgid "External Link" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:108 -#: src/pages/company/SupplierPartDetail.tsx:139 +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 #: src/tables/purchasing/ManufacturerPartTable.tsx:56 msgid "Manufacturer Part Number" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:137 +#: src/pages/company/ManufacturerPartDetail.tsx:138 msgid "Manufacturer Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:146 +#: src/pages/company/ManufacturerPartDetail.tsx:147 msgid "Manufacturer Part Details" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:152 -#: src/pages/part/PartDetail.tsx:539 +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 msgid "Parameters" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:164 -#: src/pages/part/PartDetail.tsx:657 +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 #: src/pages/purchasing/PurchasingIndex.tsx:31 msgid "Suppliers" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:207 +#: src/pages/company/ManufacturerPartDetail.tsx:208 #: src/tables/purchasing/ManufacturerPartTable.tsx:84 msgid "Edit Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:214 +#: src/pages/company/ManufacturerPartDetail.tsx:215 #: src/tables/purchasing/ManufacturerPartTable.tsx:72 #: src/tables/purchasing/ManufacturerPartTable.tsx:103 msgid "Add Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:226 +#: src/pages/company/ManufacturerPartDetail.tsx:227 #: src/tables/purchasing/ManufacturerPartTable.tsx:92 msgid "Delete Manufacturer Part" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:239 +#: src/pages/company/ManufacturerPartDetail.tsx:240 msgid "Manufacturer Part Actions" msgstr "" -#: src/pages/company/ManufacturerPartDetail.tsx:279 +#: src/pages/company/ManufacturerPartDetail.tsx:280 msgid "ManufacturerPart" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:158 +#: src/pages/company/SupplierPartDetail.tsx:159 #: src/tables/part/PartPurchaseOrdersTable.tsx:71 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 @@ -4617,163 +4702,163 @@ msgstr "" msgid "Pack Quantity" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:169 +#: src/pages/company/SupplierPartDetail.tsx:170 msgid "Supplier Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:176 +#: src/pages/company/SupplierPartDetail.tsx:177 msgid "Availability Updated" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/company/SupplierPartDetail.tsx:204 msgid "Availability" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:212 +#: src/pages/company/SupplierPartDetail.tsx:213 msgid "Supplier Part Details" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:218 -#: src/pages/purchasing/PurchaseOrderDetail.tsx:291 +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 msgid "Received Stock" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:242 +#: src/pages/company/SupplierPartDetail.tsx:243 #: src/pages/part/PartPricingPanel.tsx:111 #: src/pages/part/pricing/PricingOverviewPanel.tsx:121 msgid "Supplier Pricing" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:275 +#: src/pages/company/SupplierPartDetail.tsx:276 msgid "Supplier Part Actions" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:299 +#: src/pages/company/SupplierPartDetail.tsx:300 #: src/tables/purchasing/SupplierPartTable.tsx:210 msgid "Edit Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:307 +#: src/pages/company/SupplierPartDetail.tsx:308 #: src/tables/purchasing/SupplierPartTable.tsx:218 msgid "Delete Supplier Part" msgstr "" -#: src/pages/company/SupplierPartDetail.tsx:315 +#: src/pages/company/SupplierPartDetail.tsx:316 #: src/tables/purchasing/SupplierPartTable.tsx:163 msgid "Add Supplier Part" msgstr "" -#: src/pages/part/CategoryDetail.tsx:92 -#: src/pages/stock/LocationDetail.tsx:94 +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 #: src/tables/settings/ErrorTable.tsx:36 msgid "Path" msgstr "" -#: src/pages/part/CategoryDetail.tsx:108 +#: src/pages/part/CategoryDetail.tsx:109 msgid "Parent Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:125 +#: src/pages/part/CategoryDetail.tsx:126 msgid "Subcategories" msgstr "" -#: src/pages/part/CategoryDetail.tsx:132 -#: src/pages/stock/LocationDetail.tsx:134 +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 #: src/tables/part/PartCategoryTable.tsx:73 #: src/tables/stock/StockLocationTable.tsx:49 msgid "Structural" msgstr "" -#: src/pages/part/CategoryDetail.tsx:138 +#: src/pages/part/CategoryDetail.tsx:139 msgid "Parent default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:145 +#: src/pages/part/CategoryDetail.tsx:146 msgid "Default location" msgstr "" -#: src/pages/part/CategoryDetail.tsx:156 +#: src/pages/part/CategoryDetail.tsx:157 msgid "Top level part category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:166 -#: src/pages/part/CategoryDetail.tsx:219 +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 #: src/tables/part/PartCategoryTable.tsx:102 msgid "Edit Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:179 -#: src/pages/stock/LocationDetail.tsx:226 +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 msgid "Delete items" msgstr "" -#: src/pages/part/CategoryDetail.tsx:187 -#: src/pages/part/CategoryDetail.tsx:224 +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 msgid "Delete Part Category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:190 +#: src/pages/part/CategoryDetail.tsx:191 msgid "Parts Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:191 +#: src/pages/part/CategoryDetail.tsx:192 msgid "Action for parts in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:196 +#: src/pages/part/CategoryDetail.tsx:197 msgid "Child Categories Action" msgstr "" -#: src/pages/part/CategoryDetail.tsx:197 +#: src/pages/part/CategoryDetail.tsx:198 msgid "Action for child categories in this category" msgstr "" -#: src/pages/part/CategoryDetail.tsx:215 +#: src/pages/part/CategoryDetail.tsx:216 msgid "Category Actions" msgstr "" -#: src/pages/part/CategoryDetail.tsx:236 +#: src/pages/part/CategoryDetail.tsx:237 msgid "Category Details" msgstr "" -#: src/pages/part/PartDetail.tsx:163 +#: src/pages/part/PartDetail.tsx:164 msgid "Variant of" msgstr "" -#: src/pages/part/PartDetail.tsx:170 +#: src/pages/part/PartDetail.tsx:171 msgid "Revision of" msgstr "" -#: src/pages/part/PartDetail.tsx:177 +#: src/pages/part/PartDetail.tsx:178 #: src/tables/stock/StockItemTable.tsx:58 msgid "Revision" msgstr "" -#: src/pages/part/PartDetail.tsx:184 +#: src/pages/part/PartDetail.tsx:185 #: src/tables/notifications/NotificationsTable.tsx:31 #: src/tables/part/PartCategoryTemplateTable.tsx:67 msgid "Category" msgstr "" -#: src/pages/part/PartDetail.tsx:190 +#: src/pages/part/PartDetail.tsx:191 msgid "Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:197 +#: src/pages/part/PartDetail.tsx:198 msgid "Category Default Location" msgstr "" -#: src/pages/part/PartDetail.tsx:204 +#: src/pages/part/PartDetail.tsx:205 #: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 msgid "Units" msgstr "" -#: src/pages/part/PartDetail.tsx:211 +#: src/pages/part/PartDetail.tsx:212 #: src/tables/settings/PendingTasksTable.tsx:42 msgid "Keywords" msgstr "" -#: src/pages/part/PartDetail.tsx:236 +#: src/pages/part/PartDetail.tsx:237 #: src/tables/bom/BomTable.tsx:320 #: src/tables/build/BuildLineTable.tsx:166 #: src/tables/part/PartTable.tsx:288 @@ -4781,49 +4866,49 @@ msgstr "" msgid "Available Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:243 +#: src/pages/part/PartDetail.tsx:244 msgid "Variant Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:251 +#: src/pages/part/PartDetail.tsx:252 msgid "Minimum Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:257 +#: src/pages/part/PartDetail.tsx:258 #: src/tables/bom/BomTable.tsx:237 #: src/tables/build/BuildLineTable.tsx:128 #: src/tables/sales/SalesOrderLineItemTable.tsx:145 msgid "On order" msgstr "" -#: src/pages/part/PartDetail.tsx:264 +#: src/pages/part/PartDetail.tsx:265 msgid "Required for Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:274 msgid "Allocated to Build Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:281 +#: src/pages/part/PartDetail.tsx:282 msgid "Allocated to Sales Orders" msgstr "" -#: src/pages/part/PartDetail.tsx:288 +#: src/pages/part/PartDetail.tsx:289 #: src/tables/bom/BomTable.tsx:261 #: src/tables/bom/BomTable.tsx:293 msgid "Can Build" msgstr "" -#: src/pages/part/PartDetail.tsx:295 -#: src/pages/part/PartDetail.tsx:884 -#: src/pages/stock/StockDetail.tsx:559 +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 #: src/tables/build/BuildOrderTestTable.tsx:220 #: src/tables/stock/StockItemTable.tsx:330 msgid "In Production" msgstr "" -#: src/pages/part/PartDetail.tsx:309 -#: src/pages/part/PartDetail.tsx:890 +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 #: src/tables/part/ParametricPartTable.tsx:228 #: src/tables/part/PartTable.tsx:184 msgid "Locked" @@ -4833,11 +4918,11 @@ msgstr "" #~ msgid "Edit part" #~ msgstr "Edit part" -#: src/pages/part/PartDetail.tsx:315 +#: src/pages/part/PartDetail.tsx:316 msgid "Template Part" msgstr "" -#: src/pages/part/PartDetail.tsx:320 +#: src/pages/part/PartDetail.tsx:321 #: src/tables/bom/BomTable.tsx:315 msgid "Assembled Part" msgstr "" @@ -4846,7 +4931,7 @@ msgstr "" #~ msgid "Duplicate part" #~ msgstr "Duplicate part" -#: src/pages/part/PartDetail.tsx:325 +#: src/pages/part/PartDetail.tsx:326 msgid "Component Part" msgstr "" @@ -4854,114 +4939,114 @@ msgstr "" #~ msgid "Delete part" #~ msgstr "Delete part" -#: src/pages/part/PartDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:331 #: src/tables/bom/BomTable.tsx:305 msgid "Testable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:336 +#: src/pages/part/PartDetail.tsx:337 #: src/tables/bom/BomTable.tsx:310 msgid "Trackable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:342 msgid "Purchaseable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:346 +#: src/pages/part/PartDetail.tsx:347 msgid "Saleable Part" msgstr "" -#: src/pages/part/PartDetail.tsx:351 +#: src/pages/part/PartDetail.tsx:352 msgid "Virtual Part" msgstr "" -#: src/pages/part/PartDetail.tsx:359 +#: src/pages/part/PartDetail.tsx:360 #: src/tables/ColumnRenderers.tsx:220 msgid "Creation Date" msgstr "" -#: src/pages/part/PartDetail.tsx:364 +#: src/pages/part/PartDetail.tsx:365 msgid "Created By" msgstr "" -#: src/pages/part/PartDetail.tsx:379 +#: src/pages/part/PartDetail.tsx:380 msgid "Default Supplier" msgstr "" -#: src/pages/part/PartDetail.tsx:390 +#: src/pages/part/PartDetail.tsx:391 #: src/pages/part/pricing/BomPricingPanel.tsx:79 #: src/pages/part/pricing/VariantPricingPanel.tsx:95 #: src/tables/part/PartTable.tsx:161 msgid "Price Range" msgstr "" -#: src/pages/part/PartDetail.tsx:430 -#: src/pages/stock/StockDetail.tsx:131 +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 msgid "Last Stocktake" msgstr "" -#: src/pages/part/PartDetail.tsx:469 +#: src/pages/part/PartDetail.tsx:470 msgid "Stocktake By" msgstr "" -#: src/pages/part/PartDetail.tsx:533 +#: src/pages/part/PartDetail.tsx:534 msgid "Part Details" msgstr "" -#: src/pages/part/PartDetail.tsx:564 +#: src/pages/part/PartDetail.tsx:565 msgid "Variants" msgstr "" -#: src/pages/part/PartDetail.tsx:571 -#: src/pages/stock/StockDetail.tsx:303 +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 msgid "Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:582 -#: src/pages/stock/StockDetail.tsx:314 +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 #: src/tables/part/PartTable.tsx:99 msgid "Build Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:598 -#: src/pages/stock/StockDetail.tsx:329 +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 #: src/tables/part/PartTable.tsx:108 msgid "Sales Order Allocations" msgstr "" -#: src/pages/part/PartDetail.tsx:615 +#: src/pages/part/PartDetail.tsx:616 msgid "Bill of Materials" msgstr "" -#: src/pages/part/PartDetail.tsx:631 +#: src/pages/part/PartDetail.tsx:632 msgid "Used In" msgstr "" -#: src/pages/part/PartDetail.tsx:638 +#: src/pages/part/PartDetail.tsx:639 msgid "Part Pricing" msgstr "" -#: src/pages/part/PartDetail.tsx:644 +#: src/pages/part/PartDetail.tsx:645 #: src/pages/purchasing/PurchasingIndex.tsx:42 msgid "Manufacturers" msgstr "" -#: src/pages/part/PartDetail.tsx:684 +#: src/pages/part/PartDetail.tsx:685 msgid "Scheduling" msgstr "" -#: src/pages/part/PartDetail.tsx:696 +#: src/pages/part/PartDetail.tsx:697 msgid "Test Templates" msgstr "" -#: src/pages/part/PartDetail.tsx:723 +#: src/pages/part/PartDetail.tsx:724 msgid "Related Parts" msgstr "" -#: src/pages/part/PartDetail.tsx:860 -#: src/pages/stock/StockDetail.tsx:152 -#: src/pages/stock/StockDetail.tsx:576 +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 #: src/tables/build/BuildLineTable.tsx:59 #: src/tables/part/PartTable.tsx:117 #: src/tables/stock/StockItemTable.tsx:177 @@ -4969,59 +5054,59 @@ msgstr "" msgid "Available" msgstr "" -#: src/pages/part/PartDetail.tsx:866 +#: src/pages/part/PartDetail.tsx:867 msgid "No Stock" msgstr "" -#: src/pages/part/PartDetail.tsx:872 +#: src/pages/part/PartDetail.tsx:873 #: src/tables/part/PartTestTemplateTable.tsx:106 #: src/tables/stock/StockItemTestResultTable.tsx:383 msgid "Required" msgstr "" -#: src/pages/part/PartDetail.tsx:878 +#: src/pages/part/PartDetail.tsx:879 #: src/tables/bom/BomTable.tsx:325 #: src/tables/part/PartTable.tsx:86 msgid "On Order" msgstr "" -#: src/pages/part/PartDetail.tsx:909 +#: src/pages/part/PartDetail.tsx:910 msgid "Edit Part" msgstr "" -#: src/pages/part/PartDetail.tsx:944 +#: src/pages/part/PartDetail.tsx:945 #: src/tables/part/PartTable.tsx:331 #: src/tables/part/PartTable.tsx:342 msgid "Add Part" msgstr "" -#: src/pages/part/PartDetail.tsx:958 +#: src/pages/part/PartDetail.tsx:959 msgid "Delete Part" msgstr "" -#: src/pages/part/PartDetail.tsx:967 +#: src/pages/part/PartDetail.tsx:968 msgid "Deleting this part cannot be reversed" msgstr "" -#: src/pages/part/PartDetail.tsx:1006 -#: src/pages/stock/LocationDetail.tsx:309 +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 #: src/tables/stock/StockItemTable.tsx:444 msgid "Stock Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/part/PartDetail.tsx:1015 msgid "Count part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1025 +#: src/pages/part/PartDetail.tsx:1026 msgid "Transfer part stock" msgstr "" -#: src/pages/part/PartDetail.tsx:1034 +#: src/pages/part/PartDetail.tsx:1035 msgid "Part Actions" msgstr "" -#: src/pages/part/PartDetail.tsx:1093 +#: src/pages/part/PartDetail.tsx:1094 msgid "Select Part Revision" msgstr "" @@ -5182,7 +5267,7 @@ msgid "Overall Pricing" msgstr "" #: src/pages/part/pricing/PricingOverviewPanel.tsx:175 -#: src/pages/stock/StockDetail.tsx:125 +#: src/pages/stock/StockDetail.tsx:126 #: src/tables/stock/StockItemTable.tsx:240 msgid "Last Updated" msgstr "" @@ -5242,23 +5327,23 @@ msgstr "" msgid "Variant Part" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:88 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 msgid "Edit Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:97 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 #: src/tables/purchasing/PurchaseOrderTable.tsx:128 #: src/tables/purchasing/PurchaseOrderTable.tsx:140 msgid "Add Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:122 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 msgid "Supplier Reference" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:153 -#: src/pages/sales/ReturnOrderDetail.tsx:132 -#: src/pages/sales/SalesOrderDetail.tsx:132 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 msgid "Completed Line Items" msgstr "" @@ -5268,91 +5353,91 @@ msgstr "" #~ msgid "Order Currency," #~ msgstr "Order Currency," -#: src/pages/purchasing/PurchaseOrderDetail.tsx:160 -#: src/pages/sales/ReturnOrderDetail.tsx:139 -#: src/pages/sales/SalesOrderDetail.tsx:148 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 msgid "Order Currency" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:167 -#: src/pages/sales/ReturnOrderDetail.tsx:146 -#: src/pages/sales/SalesOrderDetail.tsx:155 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 msgid "Total Cost" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:202 -#: src/pages/sales/ReturnOrderDetail.tsx:181 -#: src/pages/sales/SalesOrderDetail.tsx:190 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 msgid "Created On" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:247 -#: src/pages/sales/ReturnOrderDetail.tsx:226 -#: src/pages/sales/SalesOrderDetail.tsx:261 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 msgid "Order Details" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:275 -#: src/pages/sales/ReturnOrderDetail.tsx:253 -#: src/pages/sales/SalesOrderDetail.tsx:292 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 msgid "Extra Line Items" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 msgid "Issue Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:340 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 msgid "Cancel Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:348 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 msgid "Hold Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:356 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 msgid "Complete Purchase Order" msgstr "" -#: src/pages/purchasing/PurchaseOrderDetail.tsx:411 -#: src/pages/sales/ReturnOrderDetail.tsx:412 -#: src/pages/sales/SalesOrderDetail.tsx:452 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 msgid "Order Actions" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:96 -#: src/pages/sales/SalesOrderDetail.tsx:102 +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 #: src/tables/sales/SalesOrderTable.tsx:124 msgid "Customer Reference" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:310 +#: src/pages/sales/ReturnOrderDetail.tsx:311 msgid "Edit Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:319 +#: src/pages/sales/ReturnOrderDetail.tsx:320 #: src/tables/sales/ReturnOrderTable.tsx:119 #: src/tables/sales/ReturnOrderTable.tsx:128 msgid "Add Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:331 +#: src/pages/sales/ReturnOrderDetail.tsx:332 msgid "Issue Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:339 +#: src/pages/sales/ReturnOrderDetail.tsx:340 msgid "Cancel Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/ReturnOrderDetail.tsx:343 msgid "Order canceled" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:347 +#: src/pages/sales/ReturnOrderDetail.tsx:348 msgid "Hold Return Order" msgstr "" -#: src/pages/sales/ReturnOrderDetail.tsx:355 +#: src/pages/sales/ReturnOrderDetail.tsx:356 msgid "Complete Return Order" msgstr "" @@ -5360,15 +5445,15 @@ msgstr "" msgid "Customers" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:141 msgid "Completed Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:238 +#: src/pages/sales/SalesOrderDetail.tsx:239 msgid "Edit Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:247 +#: src/pages/sales/SalesOrderDetail.tsx:248 #: src/tables/sales/SalesOrderTable.tsx:84 #: src/tables/sales/SalesOrderTable.tsx:96 msgid "Add Sales Order" @@ -5378,92 +5463,92 @@ msgstr "" #~ msgid "Pending Shipments" #~ msgstr "Pending Shipments" -#: src/pages/sales/SalesOrderDetail.tsx:308 +#: src/pages/sales/SalesOrderDetail.tsx:309 msgid "Shipments" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:364 +#: src/pages/sales/SalesOrderDetail.tsx:365 msgid "Issue Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:372 +#: src/pages/sales/SalesOrderDetail.tsx:373 msgid "Cancel Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:380 +#: src/pages/sales/SalesOrderDetail.tsx:381 msgid "Hold Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:389 msgid "Complete Sales Order" msgstr "" -#: src/pages/sales/SalesOrderDetail.tsx:427 +#: src/pages/sales/SalesOrderDetail.tsx:428 msgid "Ship Order" msgstr "" -#: src/pages/stock/LocationDetail.tsx:110 +#: src/pages/stock/LocationDetail.tsx:111 msgid "Parent Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:128 +#: src/pages/stock/LocationDetail.tsx:129 msgid "Sublocations" msgstr "" -#: src/pages/stock/LocationDetail.tsx:140 +#: src/pages/stock/LocationDetail.tsx:141 #: src/tables/stock/StockLocationTable.tsx:54 msgid "External" msgstr "" -#: src/pages/stock/LocationDetail.tsx:146 +#: src/pages/stock/LocationDetail.tsx:147 #: src/tables/stock/StockLocationTable.tsx:63 msgid "Location Type" msgstr "" -#: src/pages/stock/LocationDetail.tsx:157 +#: src/pages/stock/LocationDetail.tsx:158 msgid "Top level stock location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:168 +#: src/pages/stock/LocationDetail.tsx:169 msgid "Location Details" msgstr "" -#: src/pages/stock/LocationDetail.tsx:194 +#: src/pages/stock/LocationDetail.tsx:195 msgid "Default Parts" msgstr "" -#: src/pages/stock/LocationDetail.tsx:213 -#: src/pages/stock/LocationDetail.tsx:335 +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 #: src/tables/stock/StockLocationTable.tsx:123 msgid "Edit Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:234 -#: src/pages/stock/LocationDetail.tsx:340 +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 msgid "Delete Stock Location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:237 +#: src/pages/stock/LocationDetail.tsx:238 msgid "Items Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:238 +#: src/pages/stock/LocationDetail.tsx:239 msgid "Action for stock items in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:243 +#: src/pages/stock/LocationDetail.tsx:244 msgid "Child Locations Action" msgstr "" -#: src/pages/stock/LocationDetail.tsx:244 +#: src/pages/stock/LocationDetail.tsx:245 msgid "Action for child locations in this location" msgstr "" -#: src/pages/stock/LocationDetail.tsx:331 +#: src/pages/stock/LocationDetail.tsx:332 msgid "Location Actions" msgstr "" -#: src/pages/stock/StockDetail.tsx:104 +#: src/pages/stock/StockDetail.tsx:105 msgid "Base Part" msgstr "" @@ -5475,11 +5560,11 @@ msgstr "" #~ msgid "Unlink custom barcode from stock item" #~ msgstr "Unlink custom barcode from stock item" -#: src/pages/stock/StockDetail.tsx:184 +#: src/pages/stock/StockDetail.tsx:185 msgid "Installed In" msgstr "" -#: src/pages/stock/StockDetail.tsx:200 +#: src/pages/stock/StockDetail.tsx:201 msgid "Consumed By" msgstr "" @@ -5487,31 +5572,37 @@ msgstr "" #~ msgid "Edit stock item" #~ msgstr "Edit stock item" +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + #: src/pages/stock/StockDetail.tsx:217 #~ msgid "Delete stock item" #~ msgstr "Delete stock item" -#: src/pages/stock/StockDetail.tsx:287 +#: src/pages/stock/StockDetail.tsx:288 msgid "Stock Details" msgstr "" -#: src/pages/stock/StockDetail.tsx:293 +#: src/pages/stock/StockDetail.tsx:294 msgid "Stock Tracking" msgstr "" -#: src/pages/stock/StockDetail.tsx:346 +#: src/pages/stock/StockDetail.tsx:347 msgid "Test Data" msgstr "" -#: src/pages/stock/StockDetail.tsx:360 +#: src/pages/stock/StockDetail.tsx:361 msgid "Installed Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:367 +#: src/pages/stock/StockDetail.tsx:368 msgid "Child Items" msgstr "" -#: src/pages/stock/StockDetail.tsx:421 +#: src/pages/stock/StockDetail.tsx:422 msgid "Edit Stock Item" msgstr "" @@ -5519,38 +5610,38 @@ msgstr "" #~ msgid "Duplicate stock item" #~ msgstr "Duplicate stock item" -#: src/pages/stock/StockDetail.tsx:448 +#: src/pages/stock/StockDetail.tsx:449 msgid "Delete Stock Item" msgstr "" -#: src/pages/stock/StockDetail.tsx:488 +#: src/pages/stock/StockDetail.tsx:489 msgid "Stock Operations" msgstr "" -#: src/pages/stock/StockDetail.tsx:493 +#: src/pages/stock/StockDetail.tsx:494 msgid "Count stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:503 +#: src/pages/stock/StockDetail.tsx:504 #: src/tables/stock/StockItemTable.tsx:449 msgid "Add stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:511 +#: src/pages/stock/StockDetail.tsx:512 #: src/tables/stock/StockItemTable.tsx:458 msgid "Remove stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:518 +#: src/pages/stock/StockDetail.tsx:519 msgid "Transfer" msgstr "" -#: src/pages/stock/StockDetail.tsx:519 +#: src/pages/stock/StockDetail.tsx:520 #: src/tables/stock/StockItemTable.tsx:478 msgid "Transfer stock" msgstr "" -#: src/pages/stock/StockDetail.tsx:530 +#: src/pages/stock/StockDetail.tsx:531 msgid "Stock Item Actions" msgstr "" @@ -5667,28 +5758,28 @@ msgid "Clear Filters" msgstr "" #: src/tables/InvenTreeTable.tsx:122 -#: src/tables/InvenTreeTable.tsx:430 -#: src/tables/InvenTreeTable.tsx:454 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 msgid "No records found" msgstr "" -#: src/tables/InvenTreeTable.tsx:465 +#: src/tables/InvenTreeTable.tsx:467 msgid "Server returned incorrect data type" msgstr "" -#: src/tables/InvenTreeTable.tsx:473 +#: src/tables/InvenTreeTable.tsx:475 msgid "Bad request" msgstr "" -#: src/tables/InvenTreeTable.tsx:476 +#: src/tables/InvenTreeTable.tsx:478 msgid "Unauthorized" msgstr "" -#: src/tables/InvenTreeTable.tsx:479 +#: src/tables/InvenTreeTable.tsx:481 msgid "Forbidden" msgstr "" -#: src/tables/InvenTreeTable.tsx:482 +#: src/tables/InvenTreeTable.tsx:484 msgid "Not found" msgstr "" @@ -5696,18 +5787,14 @@ msgstr "" #~ msgid "Are you sure you want to delete the selected records?" #~ msgstr "Are you sure you want to delete the selected records?" -#: src/tables/InvenTreeTable.tsx:524 +#: src/tables/InvenTreeTable.tsx:531 msgid "Delete Selected Items" msgstr "" -#: src/tables/InvenTreeTable.tsx:528 +#: src/tables/InvenTreeTable.tsx:535 msgid "Are you sure you want to delete the selected items?" msgstr "" -#: src/tables/InvenTreeTable.tsx:530 -msgid "This action cannot be undone!" -msgstr "" - #: src/tables/InvenTreeTable.tsx:535 #~ msgid "Deleted records" #~ msgstr "Deleted records" @@ -5716,6 +5803,10 @@ msgstr "" #~ msgid "Records were deleted successfully" #~ msgstr "Records were deleted successfully" +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + #: src/tables/InvenTreeTable.tsx:545 #~ msgid "Failed to delete records" #~ msgstr "Failed to delete records" @@ -5725,20 +5816,20 @@ msgstr "" #~ msgid "Print actions" #~ msgstr "Print actions" -#: src/tables/InvenTreeTable.tsx:624 -#: src/tables/InvenTreeTable.tsx:625 +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 msgid "Barcode actions" msgstr "" -#: src/tables/InvenTreeTable.tsx:634 +#: src/tables/InvenTreeTable.tsx:650 msgid "Delete selected records" msgstr "" -#: src/tables/InvenTreeTable.tsx:655 +#: src/tables/InvenTreeTable.tsx:671 msgid "Refresh data" msgstr "" -#: src/tables/InvenTreeTable.tsx:681 +#: src/tables/InvenTreeTable.tsx:697 msgid "Table filters" msgstr "" @@ -6560,7 +6651,7 @@ msgstr "" #: src/tables/machine/MachineTypeTable.tsx:135 #: src/tables/machine/MachineTypeTable.tsx:255 #: src/tables/plugin/PluginListTable.tsx:180 -#: src/tables/plugin/PluginListTable.tsx:568 +#: src/tables/plugin/PluginListTable.tsx:566 msgid "Builtin" msgstr "" @@ -7137,7 +7228,7 @@ msgstr "" #~ msgid "The following plugin will be deactivated" #~ msgstr "The following plugin will be deactivated" -#: src/tables/plugin/PluginListTable.tsx:362 +#: src/tables/plugin/PluginListTable.tsx:365 msgid "Deactivate" msgstr "" @@ -7145,7 +7236,7 @@ msgstr "" #~ msgid "Confirm" #~ msgstr "Confirm" -#: src/tables/plugin/PluginListTable.tsx:373 +#: src/tables/plugin/PluginListTable.tsx:376 msgid "Activate" msgstr "" @@ -7173,75 +7264,75 @@ msgstr "" #~ msgid "Error updating plugin" #~ msgstr "Error updating plugin" -#: src/tables/plugin/PluginListTable.tsx:406 +#: src/tables/plugin/PluginListTable.tsx:409 msgid "Uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:438 +#: src/tables/plugin/PluginListTable.tsx:441 msgid "Install plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:451 +#: src/tables/plugin/PluginListTable.tsx:454 msgid "Install" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:452 +#: src/tables/plugin/PluginListTable.tsx:455 msgid "Plugin installed successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:457 +#: src/tables/plugin/PluginListTable.tsx:460 msgid "Uninstall Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:469 +#: src/tables/plugin/PluginListTable.tsx:472 msgid "Confirm plugin uninstall" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:472 +#: src/tables/plugin/PluginListTable.tsx:475 msgid "The selected plugin will be uninstalled." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:473 +#: src/tables/plugin/PluginListTable.tsx:476 msgid "This action cannot be undone." msgstr "" -#: src/tables/plugin/PluginListTable.tsx:477 +#: src/tables/plugin/PluginListTable.tsx:480 msgid "Plugin uninstalled successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:484 +#: src/tables/plugin/PluginListTable.tsx:487 msgid "Delete Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:485 +#: src/tables/plugin/PluginListTable.tsx:488 msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:498 +#: src/tables/plugin/PluginListTable.tsx:501 msgid "Plugins reloaded" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:499 +#: src/tables/plugin/PluginListTable.tsx:502 msgid "Plugins were reloaded successfully" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:515 +#: src/tables/plugin/PluginListTable.tsx:519 msgid "Reload Plugins" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:524 +#: src/tables/plugin/PluginListTable.tsx:525 msgid "Install Plugin" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:544 +#: src/tables/plugin/PluginListTable.tsx:542 msgid "Plugin Detail" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:573 +#: src/tables/plugin/PluginListTable.tsx:571 msgid "Sample" msgstr "" -#: src/tables/plugin/PluginListTable.tsx:578 +#: src/tables/plugin/PluginListTable.tsx:576 #: src/tables/stock/StockItemTable.tsx:340 msgid "Installed" msgstr "" @@ -7782,10 +7873,6 @@ msgstr "" msgid "Show staff users" msgstr "" -#: src/tables/settings/UserTable.tsx:294 -msgid "Superuser" -msgstr "" - #: src/tables/settings/UserTable.tsx:295 msgid "Show superusers" msgstr "" @@ -7872,9 +7959,13 @@ msgid "Filter by stock status" msgstr "" #: src/tables/stock/StockItemTable.tsx:301 -msgid "Show stock for assmebled parts" +msgid "Show stock for assembled parts" msgstr "" +#: src/tables/stock/StockItemTable.tsx:301 +#~ msgid "Show stock for assmebled parts" +#~ msgstr "Show stock for assmebled parts" + #: src/tables/stock/StockItemTable.tsx:306 msgid "Show items which have been allocated" msgstr "" From 62b9aaa31172b58d55223c3782cc8ad87dc0d2c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 06:49:24 +1000 Subject: [PATCH 05/22] Bump github/codeql-action in the dependencies group (#8132) Bumps the dependencies group with 1 update: [github/codeql-action](https://github.com/github/codeql-action). Updates `github/codeql-action` from 3.26.6 to 3.26.7 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/4dd16135b69a43b6c8efb853346f8437d92d3c93...8214744c546c1e5c8f03dde8fab3a7353211988d) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/scorecard.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scorecard.yaml b/.github/workflows/scorecard.yaml index 7088be1b44..20424324c1 100644 --- a/.github/workflows/scorecard.yaml +++ b/.github/workflows/scorecard.yaml @@ -67,6 +67,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6 + uses: github/codeql-action/upload-sarif@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7 with: sarif_file: results.sarif From 05707e6d650d9d1a43c153b56e81b0a8fd2db888 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 09:21:09 +1000 Subject: [PATCH 06/22] Bump the dependencies group across 1 directory with 13 updates (#8131) * Bump the dependencies group across 1 directory with 13 updates Bumps the dependencies group with 13 updates in the /src/frontend directory: | Package | From | To | | --- | --- | --- | | [@codemirror/autocomplete](https://github.com/codemirror/autocomplete) | `6.18.0` | `6.18.1` | | [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.29.0` | `8.30.0` | | [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.15.0` | `3.17.0` | | [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.55.4` | `5.56.2` | | [@uiw/codemirror-theme-vscode](https://github.com/uiwjs/react-codemirror) | `4.23.1` | `4.23.2` | | [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.23.1` | `4.23.2` | | [embla-carousel-react](https://github.com/davidjerleke/embla-carousel) | `8.2.1` | `8.3.0` | | @codecov/vite-plugin | `1.0.0` | `1.1.0` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.47.0` | `1.47.1` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.4` | `22.5.5` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.5` | `18.3.6` | | [typescript](https://github.com/microsoft/TypeScript) | `5.5.4` | `5.6.2` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.3` | `5.4.5` | Updates `@codemirror/autocomplete` from 6.18.0 to 6.18.1 - [Changelog](https://github.com/codemirror/autocomplete/blob/main/CHANGELOG.md) - [Commits](https://github.com/codemirror/autocomplete/compare/6.18.0...6.18.1) Updates `@sentry/react` from 8.29.0 to 8.30.0 - [Release notes](https://github.com/getsentry/sentry-javascript/releases) - [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md) - [Commits](https://github.com/getsentry/sentry-javascript/compare/8.29.0...8.30.0) Updates `@tabler/icons-react` from 3.15.0 to 3.17.0 - [Release notes](https://github.com/tabler/tabler-icons/releases) - [Commits](https://github.com/tabler/tabler-icons/commits/v3.17.0/packages/icons-react) Updates `@tanstack/react-query` from 5.55.4 to 5.56.2 - [Release notes](https://github.com/TanStack/query/releases) - [Commits](https://github.com/TanStack/query/commits/v5.56.2/packages/react-query) Updates `@uiw/codemirror-theme-vscode` from 4.23.1 to 4.23.2 - [Release notes](https://github.com/uiwjs/react-codemirror/releases) - [Commits](https://github.com/uiwjs/react-codemirror/compare/v4.23.1...v4.23.2) Updates `@uiw/react-codemirror` from 4.23.1 to 4.23.2 - [Release notes](https://github.com/uiwjs/react-codemirror/releases) - [Commits](https://github.com/uiwjs/react-codemirror/compare/v4.23.1...v4.23.2) Updates `embla-carousel-react` from 8.2.1 to 8.3.0 - [Release notes](https://github.com/davidjerleke/embla-carousel/releases) - [Commits](https://github.com/davidjerleke/embla-carousel/compare/v8.2.1...v8.3.0) Updates `@codecov/vite-plugin` from 1.0.0 to 1.1.0 Updates `@playwright/test` from 1.47.0 to 1.47.1 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.47.0...v1.47.1) Updates `@types/node` from 22.5.4 to 22.5.5 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `@types/react` from 18.3.5 to 18.3.6 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `typescript` from 5.5.4 to 5.6.2 - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.5.4...v5.6.2) Updates `vite` from 5.4.3 to 5.4.5 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/v5.4.5/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.4.5/packages/vite) --- updated-dependencies: - dependency-name: "@codemirror/autocomplete" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@sentry/react" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: "@tabler/icons-react" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: "@tanstack/react-query" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: "@uiw/codemirror-theme-vscode" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@uiw/react-codemirror" dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: embla-carousel-react dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: "@codecov/vite-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: "@playwright/test" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: "@types/react" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: vite dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] * implement fix suggested by @wolflu05 in https://github.com/inventree/InvenTree/pull/8100#issuecomment-2354010173 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Oliver Co-authored-by: Matthias Mair --- src/frontend/package.json | 26 +- src/frontend/src/states/LocalState.tsx | 4 +- src/frontend/src/tables/InvenTreeTable.tsx | 6 +- src/frontend/yarn.lock | 314 ++++++++++----------- 4 files changed, 176 insertions(+), 174 deletions(-) diff --git a/src/frontend/package.json b/src/frontend/package.json index ef170e12f3..5397f8f99a 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -11,7 +11,7 @@ "compile": "lingui compile --typescript" }, "dependencies": { - "@codemirror/autocomplete": "^6.18.0", + "@codemirror/autocomplete": "^6.18.1", "@codemirror/lang-liquid": "^6.2.1", "@codemirror/language": "^6.10.2", "@codemirror/lint": "^6.8.1", @@ -37,11 +37,11 @@ "@mantine/notifications": "^7.12.2", "@mantine/spotlight": "^7.12.2", "@mantine/vanilla-extract": "^7.12.2", - "@sentry/react": "^8.29.0", - "@tabler/icons-react": "^3.15.0", - "@tanstack/react-query": "^5.55.4", - "@uiw/codemirror-theme-vscode": "^4.23.1", - "@uiw/react-codemirror": "^4.23.1", + "@sentry/react": "^8.30.0", + "@tabler/icons-react": "^3.17.0", + "@tanstack/react-query": "^5.56.2", + "@uiw/codemirror-theme-vscode": "^4.23.2", + "@uiw/react-codemirror": "^4.23.2", "@uiw/react-split": "^5.9.3", "@vanilla-extract/css": "^1.15.5", "axios": "^1.7.7", @@ -49,7 +49,7 @@ "codemirror": "^6.0.1", "dayjs": "^1.11.13", "easymde": "^2.18.0", - "embla-carousel-react": "^8.2.1", + "embla-carousel-react": "^8.3.0", "fuse.js": "^7.0.0", "html5-qrcode": "^2.3.8", "mantine-datatable": "^7.12.4", @@ -71,13 +71,13 @@ "@babel/core": "^7.25.2", "@babel/preset-react": "^7.24.7", "@babel/preset-typescript": "^7.24.7", - "@codecov/vite-plugin": "^1.0.0", + "@codecov/vite-plugin": "^1.1.0", "@lingui/cli": "^4.11.4", "@lingui/macro": "^4.11.4", - "@playwright/test": "^1.47.0", - "@types/node": "^22.5.4", + "@playwright/test": "^1.47.1", + "@types/node": "^22.5.5", "@types/qrcode": "^1.5.5", - "@types/react": "^18.3.5", + "@types/react": "^18.3.6", "@types/react-dom": "^18.3.0", "@types/react-grid-layout": "^1.3.5", "@types/react-router-dom": "^5.3.3", @@ -87,8 +87,8 @@ "babel-plugin-macros": "^3.1.0", "nyc": "^17.0.0", "rollup-plugin-license": "^3.5.2", - "typescript": "^5.5.4", - "vite": "^5.4.3", + "typescript": "^5.6.2", + "vite": "^5.4.5", "vite-plugin-babel-macros": "^1.0.6", "vite-plugin-istanbul": "^6.0.2" } diff --git a/src/frontend/src/states/LocalState.tsx b/src/frontend/src/states/LocalState.tsx index dafa7b6ad8..6077665dda 100644 --- a/src/frontend/src/states/LocalState.tsx +++ b/src/frontend/src/states/LocalState.tsx @@ -31,7 +31,9 @@ interface LocalStateProps { ) => (names: Record) => void; tableSorting: Record; getTableSorting: (tableKey: string) => DataTableSortStatus; - setTableSorting: (tableKey: string) => (sorting: DataTableSortStatus) => void; + setTableSorting: ( + tableKey: string + ) => (sorting: DataTableSortStatus) => void; clearTableColumnNames: () => void; detailDrawerStack: number; addDetailDrawer: (value: number | false) => void; diff --git a/src/frontend/src/tables/InvenTreeTable.tsx b/src/frontend/src/tables/InvenTreeTable.tsx index e7b6e777d3..b47bdf60b6 100644 --- a/src/frontend/src/tables/InvenTreeTable.tsx +++ b/src/frontend/src/tables/InvenTreeTable.tsx @@ -138,7 +138,7 @@ const defaultInvenTreeTableProps: InvenTreeTableProps = { /** * Table Component which extends DataTable with custom InvenTree functionality */ -export function InvenTreeTable({ +export function InvenTreeTable>({ url, tableState, columns, @@ -398,7 +398,7 @@ export function InvenTreeTable({ } // Data Sorting - const [sortStatus, setSortStatus] = useState({ + const [sortStatus, setSortStatus] = useState>({ columnAccessor: tableProps.defaultSortColumn ?? '', direction: 'asc' }); @@ -432,7 +432,7 @@ export function InvenTreeTable({ tableProps.noRecordsText ?? t`No records found` ); - const handleSortStatusChange = (status: DataTableSortStatus) => { + const handleSortStatusChange = (status: DataTableSortStatus) => { tableState.setPage(1); setSortStatus(status); diff --git a/src/frontend/yarn.lock b/src/frontend/yarn.lock index d5eedee8e7..1d360e4e01 100644 --- a/src/frontend/yarn.lock +++ b/src/frontend/yarn.lock @@ -356,10 +356,10 @@ "@babel/helper-validator-identifier" "^7.24.7" to-fast-properties "^2.0.0" -"@codecov/bundler-plugin-core@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@codecov/bundler-plugin-core/-/bundler-plugin-core-1.0.0.tgz#134a796460e85e71e6be121eaec4bbd08d430630" - integrity sha512-RIhOBa2cQ8rn2az3BaOVIIJHNbOkqOfIxW+NPgjFB3fuNQiYjLDC9X6nExlzo03ntu01Ph/5FF01NPrCvtd5lw== +"@codecov/bundler-plugin-core@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@codecov/bundler-plugin-core/-/bundler-plugin-core-1.1.0.tgz#46886d6fff7d6462ee2c71c3821362fdcf24da78" + integrity sha512-moetKC32uLQh09X3HNCsNzr+ZVdCoGE11eEH65wEuVb1P6p28W52EjhamrZcl76X1DkthETRPiw7DJQ9hyA+AA== dependencies: "@actions/core" "^1.10.1" "@actions/github" "^6.0.0" @@ -368,18 +368,18 @@ unplugin "^1.10.1" zod "^3.22.4" -"@codecov/vite-plugin@^1.0.0": - version "1.0.0" - resolved "https://registry.yarnpkg.com/@codecov/vite-plugin/-/vite-plugin-1.0.0.tgz#fe88924d7621d3e540dee9ff2a2a974b409416c6" - integrity sha512-zuCw1sMEpPsc/zrTgFvXQa0SnU9gMrihhzBtPv7KI/YxYzO4WEAUfTQQyaeCNArY8k3M0IYdrz1CpoMouJLAWQ== +"@codecov/vite-plugin@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@codecov/vite-plugin/-/vite-plugin-1.1.0.tgz#0379f95002de88601d18805456b8e5e161653ee7" + integrity sha512-X/Fw/uF56+nkjhF3CL6kEmcdCj56fAJYdJh4Divyv/4pjze1MTfrYOv82DmzOmeJho8lxM0e0NvzPaiLdgRPrw== dependencies: - "@codecov/bundler-plugin-core" "^1.0.0" + "@codecov/bundler-plugin-core" "^1.1.0" unplugin "^1.10.1" -"@codemirror/autocomplete@^6.0.0", "@codemirror/autocomplete@^6.18.0": - version "6.18.0" - resolved "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-6.18.0.tgz#5f39b05daca04c95e990b70024144df47b2aa635" - integrity sha512-5DbOvBbY4qW5l57cjDsmmpDh3/TeK1vXfTHa+BUMrRzdWdcxKZ4U4V7vQaTtOpApNU4kLS4FQ6cINtLg245LXA== +"@codemirror/autocomplete@^6.0.0", "@codemirror/autocomplete@^6.18.1": + version "6.18.1" + resolved "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-6.18.1.tgz#3bd8d62c9c9a14d0706ab0a8adac139eaf1a41f1" + integrity sha512-iWHdj/B1ethnHRTwZj+C1obmmuCzquH29EbcKr0qIjA9NfDeBDJ7vs+WOHsFeLeflE4o+dHfYndJloMKHUkWUA== dependencies: "@codemirror/language" "^6.0.0" "@codemirror/state" "^6.0.0" @@ -1416,12 +1416,12 @@ dependencies: "@octokit/openapi-types" "^22.2.0" -"@playwright/test@^1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.47.0.tgz#69fc55b10754147cc20021afbfa05747d4961bf0" - integrity sha512-SgAdlSwYVpToI4e/IH19IHHWvoijAYH5hu2MWSXptRypLSnzj51PcGD+rsOXFayde4P9ZLi+loXVwArg6IUkCA== +"@playwright/test@^1.47.1": + version "1.47.1" + resolved "https://registry.yarnpkg.com/@playwright/test/-/test-1.47.1.tgz#568a46229a5aef54b74977297a7946bb5ac4b67b" + integrity sha512-dbWpcNQZ5nj16m+A5UNScYx7HX5trIy7g4phrcitn+Nk83S32EBX/CLU4hiF4RGKX/yRc93AAqtfaXB7JWBd4Q== dependencies: - playwright "1.47.0" + playwright "1.47.1" "@remix-run/router@1.19.2": version "1.19.2" @@ -1508,116 +1508,116 @@ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.2.tgz#e4291e3c1bc637083f87936c333cdbcad22af63b" integrity sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA== -"@sentry-internal/browser-utils@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-8.29.0.tgz#c84e8d8a08170dbf52968e6b563775949c2ac532" - integrity sha512-6HpyQkaqPvK6Lnigjlarq/LDYgXT2OBNf24RK7z0ipJSxSIpmtelfzHbnwWYnypNDXfTDdPm97fZEenQHryYJA== +"@sentry-internal/browser-utils@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-8.30.0.tgz#eb68c79556ffb864eb5924a53affde52f2b77362" + integrity sha512-pwX+awNWaxSOAsBLVLqc1+Hw+Fm1Nci9mbKFA6Ed5YzCG049PnBVQwugpmx2dcyyCqJpORhcIqb9jHdCkYmCiA== dependencies: - "@sentry/core" "8.29.0" - "@sentry/types" "8.29.0" - "@sentry/utils" "8.29.0" + "@sentry/core" "8.30.0" + "@sentry/types" "8.30.0" + "@sentry/utils" "8.30.0" -"@sentry-internal/feedback@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-8.29.0.tgz#9c562f7d13794131b6ac87860cda5492ed538e37" - integrity sha512-yAL5YMEFk4XaeVRUGEguydahRzaQrNPAaWRv6k+XRzCv9CGBhxb14KXQc9X/penlauMFcDfgelCPKcTqcf6wDw== +"@sentry-internal/feedback@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-8.30.0.tgz#6f78a245298502e4cc5ce77313dde6965abfecfe" + integrity sha512-ParFRxQY6helxkwUDmro77Wc5uSIC6rZos88jYMrYwFmoTJaNWf4lDzPyECfdSiSYyzSMZk4dorSUN85Ul7DCg== dependencies: - "@sentry/core" "8.29.0" - "@sentry/types" "8.29.0" - "@sentry/utils" "8.29.0" + "@sentry/core" "8.30.0" + "@sentry/types" "8.30.0" + "@sentry/utils" "8.30.0" -"@sentry-internal/replay-canvas@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-8.29.0.tgz#57a08adec35641607b53ea079f7a6ef539e98c00" - integrity sha512-W2YbZRvp2lYC50V51fNLcnoIiK1Km4vSc+v6SL7c//lv2qpyumoUAAIDKY+14s8Lgt1RsR6rfZhfheD4O/6WSQ== +"@sentry-internal/replay-canvas@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-8.30.0.tgz#3630eec14d23b1fd368d8c331ee695aa5bb41425" + integrity sha512-y/QqcvchhtMlVA6eOZicIfTxtZarazQZJuFW0018ynPxBTiuuWSxMCLqduulXUYsFejfD8/eKHb3BpCIFdDYjg== dependencies: - "@sentry-internal/replay" "8.29.0" - "@sentry/core" "8.29.0" - "@sentry/types" "8.29.0" - "@sentry/utils" "8.29.0" + "@sentry-internal/replay" "8.30.0" + "@sentry/core" "8.30.0" + "@sentry/types" "8.30.0" + "@sentry/utils" "8.30.0" -"@sentry-internal/replay@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-8.29.0.tgz#d704ad5a137c3dd6fe398e0c9856c4fc043be707" - integrity sha512-Xgv/eYucsm7GaGKms2ClQ02NpD07MxjoTjp1/vYZm0H4Q08dVphVZrQp7hL1oX/VD9mb5SFyyKuuIRqIu7S8RA== +"@sentry-internal/replay@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-8.30.0.tgz#6a4a8bd551a16ea5f77f913acbccd88061868c84" + integrity sha512-/KFre+BrovPCiovgAu5N1ErJtkDVzkJA5hV3Jw011AlxRWxrmPwu6+9sV9/rn3tqYAGyq6IggYqeIOHhLh1Ihg== dependencies: - "@sentry-internal/browser-utils" "8.29.0" - "@sentry/core" "8.29.0" - "@sentry/types" "8.29.0" - "@sentry/utils" "8.29.0" + "@sentry-internal/browser-utils" "8.30.0" + "@sentry/core" "8.30.0" + "@sentry/types" "8.30.0" + "@sentry/utils" "8.30.0" -"@sentry/browser@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-8.29.0.tgz#d60a754a26c5235fab05fe2e675ced07209aaa88" - integrity sha512-aKTy4H/3RI0q9LIeepesjWGlGNeh4HGFfwQjzHME8gcWCQ5LSlzYX4U+hu2yp7r1Jfd9MUTFfOuuLih2HGLGsQ== +"@sentry/browser@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-8.30.0.tgz#3c6d5ef62d7daca2873b47f59b136c33941b56de" + integrity sha512-M+tKqawH9S3CqlAIcqdZcHbcsNQkEa9MrPqPCYvXco3C4LRpNizJP2XwBiGQY2yK+fOSvbaWpPtlI938/wuRZQ== dependencies: - "@sentry-internal/browser-utils" "8.29.0" - "@sentry-internal/feedback" "8.29.0" - "@sentry-internal/replay" "8.29.0" - "@sentry-internal/replay-canvas" "8.29.0" - "@sentry/core" "8.29.0" - "@sentry/types" "8.29.0" - "@sentry/utils" "8.29.0" + "@sentry-internal/browser-utils" "8.30.0" + "@sentry-internal/feedback" "8.30.0" + "@sentry-internal/replay" "8.30.0" + "@sentry-internal/replay-canvas" "8.30.0" + "@sentry/core" "8.30.0" + "@sentry/types" "8.30.0" + "@sentry/utils" "8.30.0" -"@sentry/core@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry/core/-/core-8.29.0.tgz#52032ece2d7b60f3775f10189c27e26b1cebdbca" - integrity sha512-scMbZaJ0Ov8NPgWn86EdjhyTLrhvRVbTxjg0imJAvhIvRbblH3xyqye/17Qnk2fOp8TNDOl7TBZHi0NCFQ5HUw== +"@sentry/core@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry/core/-/core-8.30.0.tgz#f929e42e9a537bfa3eb6024082714e9ab98d822b" + integrity sha512-CJ/FuWLw0QEKGKXGL/nm9eaOdajEcmPekLuHAuOCxID7N07R9l9laz3vFbAkUZ97GGDv3sYrJZgywfY3Moropg== dependencies: - "@sentry/types" "8.29.0" - "@sentry/utils" "8.29.0" + "@sentry/types" "8.30.0" + "@sentry/utils" "8.30.0" -"@sentry/react@^8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry/react/-/react-8.29.0.tgz#f69b87a7947213dcaabdd18bafb6ac818d30f0a2" - integrity sha512-ux+9rNHx2ZyWC94OBb5K1HFQU/v64gL/n3co9e/3cD9nUnqXMJuw/IofiwD1fv6nfdWECLU50A1OtXhA9/c+XQ== +"@sentry/react@^8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry/react/-/react-8.30.0.tgz#fe24964d3f5e963749d8a11b45332cea85bd9ac4" + integrity sha512-ktQjXs87jdsxW0YrHci3sb6zcSzhMECWnrTVU/KGZF8UoDsk4P4xRCknijd2SSmDIjSkwzUAANR43UkCi4BTQg== dependencies: - "@sentry/browser" "8.29.0" - "@sentry/core" "8.29.0" - "@sentry/types" "8.29.0" - "@sentry/utils" "8.29.0" + "@sentry/browser" "8.30.0" + "@sentry/core" "8.30.0" + "@sentry/types" "8.30.0" + "@sentry/utils" "8.30.0" hoist-non-react-statics "^3.3.2" -"@sentry/types@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry/types/-/types-8.29.0.tgz#c19e43524b8e7766028f4da8f02eddcc33518541" - integrity sha512-j4gX3ctzgD4xVWllXAhm6M+kHFEvrFoUPFq60X/pgkjsWCocGuhtNfB0rW43ICG8hCnlz8IYl7O7b8V8qY7SPg== +"@sentry/types@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry/types/-/types-8.30.0.tgz#5f5011f5b16bafd30a039ca5e8c337e948c703fb" + integrity sha512-kgWW2BCjBmVlSQRG32GonHEVyeDbys74xf9mLPvynwHTgw3+NUlNAlEdu05xnb2ow4bCTHfbkS5G1zRgyv5k4Q== -"@sentry/utils@8.29.0": - version "8.29.0" - resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-8.29.0.tgz#d4a36643369e30ba62ef8f40f149420a100f64bb" - integrity sha512-nb93/m3SjQChQJFqJj3oNW3Rz/12yrT7jypTCire3c2hpYWG2uR5n8VY9UUMTA6HLNvdom6tckK7p3bXGXlF0w== +"@sentry/utils@8.30.0": + version "8.30.0" + resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-8.30.0.tgz#2343dd8593ea83890b3e0d792ed3fa257955a26b" + integrity sha512-wZxU2HWlzsnu8214Xy7S7cRIuD6h8Z5DnnkojJfX0i0NLooepZQk2824el1Q13AakLb7/S8CHSHXOMnCtoSduw== dependencies: - "@sentry/types" "8.29.0" + "@sentry/types" "8.30.0" "@sinclair/typebox@^0.27.8": version "0.27.8" resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== -"@tabler/icons-react@^3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@tabler/icons-react/-/icons-react-3.15.0.tgz#1c1a05c4990e7b9bcc3ab5be353245bb960c37ea" - integrity sha512-EXIedaHiM4XcdZ8ml3pZeo5p/jetpXbwhDq9Zv3UVM8E3YACSww9TfCtEv3iBI74NI7mNz7Uua2qpNwwWljarg== +"@tabler/icons-react@^3.17.0": + version "3.17.0" + resolved "https://registry.yarnpkg.com/@tabler/icons-react/-/icons-react-3.17.0.tgz#badafce6618f6b8104262538e3f55d34d09c2e29" + integrity sha512-Ndm9Htv7KpIU1PYYrzs5EMhyA3aZGcgaxUp9Q1XOxcRZ+I0X+Ub2WS5f4bkRyDdL1s0++k2T9XRgmg2pG113sw== dependencies: - "@tabler/icons" "3.15.0" + "@tabler/icons" "3.17.0" -"@tabler/icons@3.15.0": - version "3.15.0" - resolved "https://registry.yarnpkg.com/@tabler/icons/-/icons-3.15.0.tgz#4fb39ca456a14103edd950936fd98d150e82d007" - integrity sha512-Pzo7g8znsCgCcnSLCfukEV+kcfr0/VjBoCLXJtrOtaY94gtvYjWC2hrKzazf511asUflRuk/+dxztdKYJgpe4g== +"@tabler/icons@3.17.0": + version "3.17.0" + resolved "https://registry.yarnpkg.com/@tabler/icons/-/icons-3.17.0.tgz#329ca3e4cb533c5a6a61467fe5d6de14a0813020" + integrity sha512-sCSfAQ0w93KSnSL7tS08n73CdIKpuHP8foeLMWgDKiZaCs8ZE//N3ytazCk651ZtruTtByI3b+ZDj7nRf+hHvA== -"@tanstack/query-core@5.55.4": - version "5.55.4" - resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.55.4.tgz#21ef6c6505bf108570f1c18f5f3b90efc8b1c2d6" - integrity sha512-uoRqNnRfzOH4OMIoxj8E2+Us89UIGXfau981qYJWsNMkFS1GXR4UIyzUTVGq4N7SDLHgFPpo6IOazqUV5gkMZA== +"@tanstack/query-core@5.56.2": + version "5.56.2" + resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.56.2.tgz#2def2fb0290cd2836bbb08afb0c175595bb8109b" + integrity sha512-gor0RI3/R5rVV3gXfddh1MM+hgl0Z4G7tj6Xxpq6p2I03NGPaJ8dITY9Gz05zYYb/EJq9vPas/T4wn9EaDPd4Q== -"@tanstack/react-query@^5.55.4": - version "5.55.4" - resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.55.4.tgz#4c8f54a05704e9f9a9ffc77a6dfa79b5a33f9905" - integrity sha512-e3uX5XkLD9oTV66/VsVpkYz3Ds/ps/Yk+V5d89xthAbtNIKKBEm4FdNb9yISFzGEGezUzVO68qmfmiSrtScvsg== +"@tanstack/react-query@^5.56.2": + version "5.56.2" + resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.56.2.tgz#3a0241b9d010910905382f5e99160997b8795f91" + integrity sha512-SR0GzHVo6yzhN72pnRhkEFRAHMsUo5ZPzAxfTMvUxFIDVS6W9LYUp6nXW3fcHVdg0ZJl8opSH85jqahvm6DSVg== dependencies: - "@tanstack/query-core" "5.55.4" + "@tanstack/query-core" "5.56.2" "@types/babel__core@^7.1.18", "@types/babel__core@^7.20.5": version "7.20.5" @@ -1744,10 +1744,10 @@ resolved "https://registry.yarnpkg.com/@types/marked/-/marked-4.3.2.tgz#e2e0ad02ebf5626bd215c5bae2aff6aff0ce9eac" integrity sha512-a79Yc3TOk6dGdituy8hmTTJXjOkZ7zsFYV10L337ttq/rec8lRMDBpV7fL3uLx6TgbFCa5DU/h8FmIBQPSbU0w== -"@types/node@*", "@types/node@^22.5.4": - version "22.5.4" - resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.4.tgz#83f7d1f65bc2ed223bdbf57c7884f1d5a4fa84e8" - integrity sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg== +"@types/node@*", "@types/node@^22.5.5": + version "22.5.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-22.5.5.tgz#52f939dd0f65fc552a4ad0b392f3c466cc5d7a44" + integrity sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA== dependencies: undici-types "~6.19.2" @@ -1813,10 +1813,10 @@ dependencies: "@types/react" "*" -"@types/react@*", "@types/react@^18.3.5": - version "18.3.5" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.5.tgz#5f524c2ad2089c0ff372bbdabc77ca2c4dbadf8f" - integrity sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA== +"@types/react@*", "@types/react@^18.3.6": + version "18.3.6" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.6.tgz#1cb5895c5ea0d99d8bc7d659e42f72713cbd3942" + integrity sha512-CnGaRYNu2iZlkGXGrOYtdg5mLK8neySj0woZ4e2wF/eli2E6Sazmq5X+Nrj6OBrrFVQfJWTUFeqAzoRhWQXYvg== dependencies: "@types/prop-types" "*" csstype "^3.0.2" @@ -1845,10 +1845,10 @@ dependencies: "@types/yargs-parser" "*" -"@uiw/codemirror-extensions-basic-setup@4.23.1": - version "4.23.1" - resolved "https://registry.yarnpkg.com/@uiw/codemirror-extensions-basic-setup/-/codemirror-extensions-basic-setup-4.23.1.tgz#a532f367f3420791c9a1b4cc076f839d2bef4e47" - integrity sha512-l/1iBZt3Ao9ElUvUvA0CI8bLcGw0kgV0976l1u3psYMfKYJl5TwSHn6JOeSt/iCq/13exp1f7u+zFMRwtzeinw== +"@uiw/codemirror-extensions-basic-setup@4.23.2": + version "4.23.2" + resolved "https://registry.yarnpkg.com/@uiw/codemirror-extensions-basic-setup/-/codemirror-extensions-basic-setup-4.23.2.tgz#90772ca73424d797bfae94aaa9a1b61ce0203c6c" + integrity sha512-eacivkj7wzskl2HBYs4rfN0CbYlsSQh5ADtOYWTpc8Txm4ONw8RTi4/rxF6Ks2vdaovizewU5QaHximbxoNTrw== dependencies: "@codemirror/autocomplete" "^6.0.0" "@codemirror/commands" "^6.0.0" @@ -1858,32 +1858,32 @@ "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" -"@uiw/codemirror-theme-vscode@^4.23.1": - version "4.23.1" - resolved "https://registry.yarnpkg.com/@uiw/codemirror-theme-vscode/-/codemirror-theme-vscode-4.23.1.tgz#2b2836e2ab45d5690edc0e6d4f1807f416cc54b6" - integrity sha512-0Io6cuRZ0fSIIBkXz7tmv1PwnLMugFJqw9N90fMAGMa0cIiWZFkb88WMnasQFwT3F9J0N//iz2fCvUUd1or+WQ== +"@uiw/codemirror-theme-vscode@^4.23.2": + version "4.23.2" + resolved "https://registry.yarnpkg.com/@uiw/codemirror-theme-vscode/-/codemirror-theme-vscode-4.23.2.tgz#7599ce4edf718d60fed23f2b034f5a444052b9ee" + integrity sha512-SpXlCOCtuu8zTiTO6Cs8Oa5/czItZ59t5MfocJmjOFVN3C22VIR0oXqi375fTl+YS9Mw2+TaOSuIzuzkXH1OEQ== dependencies: - "@uiw/codemirror-themes" "4.23.1" + "@uiw/codemirror-themes" "4.23.2" -"@uiw/codemirror-themes@4.23.1": - version "4.23.1" - resolved "https://registry.yarnpkg.com/@uiw/codemirror-themes/-/codemirror-themes-4.23.1.tgz#0be7158f1dd14a02883930f546861285385ea4ff" - integrity sha512-x1qAixI8udRkwXd8WQh8DYD2YE5CulQRCdvGQMKpJtO2cUIVONIagWxfx4CGlTPZ/Vmqr9KX2ziukZgk0kw1VQ== +"@uiw/codemirror-themes@4.23.2": + version "4.23.2" + resolved "https://registry.yarnpkg.com/@uiw/codemirror-themes/-/codemirror-themes-4.23.2.tgz#67c40eed4675fa803289068f54ef4f97e1cd31d1" + integrity sha512-g8x+oPqgbzxXSkHhRf7e1AM1mI9/Nl3URReS89pHitRKv8MZNrE+ey+HE8ycfNXRUatrb6zTSRV3M75uoZwNYw== dependencies: "@codemirror/language" "^6.0.0" "@codemirror/state" "^6.0.0" "@codemirror/view" "^6.0.0" -"@uiw/react-codemirror@^4.23.1": - version "4.23.1" - resolved "https://registry.yarnpkg.com/@uiw/react-codemirror/-/react-codemirror-4.23.1.tgz#0d5fe610ce1c282f4097367ff2dda8dca9a3f7fd" - integrity sha512-OUrBY/7gvmiolgP4m9UlsGAzNce9YEzmDvPPAc+g27q+BZEJYeWQCzqtjtXfL7OkwQcZ0Aea2DuUUZRUTTIyxg== +"@uiw/react-codemirror@^4.23.2": + version "4.23.2" + resolved "https://registry.yarnpkg.com/@uiw/react-codemirror/-/react-codemirror-4.23.2.tgz#0b9078d0fc086ca7b75a3aa0eb3942c42919c156" + integrity sha512-MmFL6P5V1Mr81JLkJyWNedfxENKdRhsvyU7Izji9wp337m8dqRAz7rCF5XWarGKx+iQ7q2H5ryl07nLqKLSvtQ== dependencies: "@babel/runtime" "^7.18.6" "@codemirror/commands" "^6.1.0" "@codemirror/state" "^6.1.1" "@codemirror/theme-one-dark" "^6.0.0" - "@uiw/codemirror-extensions-basic-setup" "4.23.1" + "@uiw/codemirror-extensions-basic-setup" "4.23.2" codemirror "^6.0.0" "@uiw/react-split@^5.9.3": @@ -2589,23 +2589,23 @@ electron-to-chromium@^1.5.4: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.18.tgz#5fe62b9d21efbcfa26571066502d94f3ed97e495" integrity sha512-1OfuVACu+zKlmjsNdcJuVQuVE61sZOLbNM4JAQ1Rvh6EOj0/EUKhMJjRH73InPlXSh8HIJk1cVZ8pyOV/FMdUQ== -embla-carousel-react@^8.2.1: - version "8.2.1" - resolved "https://registry.yarnpkg.com/embla-carousel-react/-/embla-carousel-react-8.2.1.tgz#0202bd6b04f749cf9a56ad86f4549f75b7bb43bb" - integrity sha512-YKtARk101mp00Zb6UAFkkvK+5XRo92LAtO9xLFeDnQ/XU9DqFhKnRy1CedRRj0/RSk6MTFDx3MqOQue3gJj9DA== +embla-carousel-react@^8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/embla-carousel-react/-/embla-carousel-react-8.3.0.tgz#8aa6b9b77c3e900349a7215cb31b7ead6a84a715" + integrity sha512-P1FlinFDcIvggcErRjNuVqnUR8anyo8vLMIH8Rthgofw7Nj8qTguCa2QjFAbzxAUTQTPNNjNL7yt0BGGinVdFw== dependencies: - embla-carousel "8.2.1" - embla-carousel-reactive-utils "8.2.1" + embla-carousel "8.3.0" + embla-carousel-reactive-utils "8.3.0" -embla-carousel-reactive-utils@8.2.1: - version "8.2.1" - resolved "https://registry.yarnpkg.com/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.2.1.tgz#c62fdb6f77c6dcd68bcdaba62523acacb8e633fc" - integrity sha512-LXMVOOyv09ZKRxRQXYMX1FpVGcypsuxdcidNcNlBQUN2mK7hkmjVFQwwhfnnY39KMi88XYnYPBgMxfTe0vxSrA== +embla-carousel-reactive-utils@8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.3.0.tgz#75f177ed2f6bdafbaab8f869f936692d08cd488e" + integrity sha512-EYdhhJ302SC4Lmkx8GRsp0sjUhEN4WyFXPOk0kGu9OXZSRMmcBlRgTvHcq8eKJE1bXWBsOi1T83B+BSSVZSmwQ== -embla-carousel@8.2.1: - version "8.2.1" - resolved "https://registry.yarnpkg.com/embla-carousel/-/embla-carousel-8.2.1.tgz#d156be420f47d9f61f444eb789c9901cce43f7f8" - integrity sha512-9mTDtyMZJhFuuW5pixhTT4iLiJB1l3dH3IpXUKCsgLlRlHCiySf/wLKy5xIAzmxIsokcQ50xea8wi7BCt0+Rxg== +embla-carousel@8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/embla-carousel/-/embla-carousel-8.3.0.tgz#dc27c63c405aa98320cb36893e4be2fbdc787ee1" + integrity sha512-Ve8dhI4w28qBqR8J+aMtv7rLK89r1ZA5HocwFz6uMB/i5EiC7bGI7y+AM80yAVUJw3qqaZYK7clmZMUR8kM3UA== emoji-regex@^8.0.0: version "8.0.0" @@ -3694,17 +3694,17 @@ pkg-up@^3.1.0: dependencies: find-up "^3.0.0" -playwright-core@1.47.0: - version "1.47.0" - resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.47.0.tgz#b54ec060fd83e5c2e46b63986b5ebb5e96ace427" - integrity sha512-1DyHT8OqkcfCkYUD9zzUTfg7EfTd+6a8MkD/NWOvjo0u/SCNd5YmY/lJwFvUZOxJbWNds+ei7ic2+R/cRz/PDg== +playwright-core@1.47.1: + version "1.47.1" + resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.47.1.tgz#bb45bdfb0d48412c535501aa3805867282857df8" + integrity sha512-i1iyJdLftqtt51mEk6AhYFaAJCDx0xQ/O5NU8EKaWFgMjItPVma542Nh/Aq8aLCjIJSzjaiEQGW/nyqLkGF1OQ== -playwright@1.47.0: - version "1.47.0" - resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.47.0.tgz#fb9b028883fad11362f9ff63ce7ba44bda0bf626" - integrity sha512-jOWiRq2pdNAX/mwLiwFYnPHpEZ4rM+fRSQpRHwEwZlP2PUANvL3+aJOF/bvISMhFD30rqMxUB4RJx9aQbfh4Ww== +playwright@1.47.1: + version "1.47.1" + resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.47.1.tgz#cdc1116f5265b8d2ff7be0d8942d49900634dc6c" + integrity sha512-SUEKi6947IqYbKxRiqnbUobVZY4bF1uu+ZnZNJX9DfU1tlf2UhWfvVjLf01pQx9URsOr18bFVUKXmanYWhbfkw== dependencies: - playwright-core "1.47.0" + playwright-core "1.47.1" optionalDependencies: fsevents "2.3.2" @@ -4442,10 +4442,10 @@ typedarray-to-buffer@^3.1.5: dependencies: is-typedarray "^1.0.0" -typescript@^5.5.4: - version "5.5.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba" - integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== +typescript@^5.6.2: + version "5.6.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.6.2.tgz#d1de67b6bef77c41823f822df8f0b3bcff60a5a0" + integrity sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw== typo-js@*: version "1.2.4" @@ -4596,10 +4596,10 @@ vite-plugin-istanbul@^6.0.2: source-map "^0.7.4" test-exclude "^6.0.0" -vite@^5.0.0, vite@^5.0.11, vite@^5.4.3: - version "5.4.3" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.3.tgz#771c470e808cb6732f204e1ee96c2ed65b97a0eb" - integrity sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q== +vite@^5.0.0, vite@^5.0.11, vite@^5.4.5: + version "5.4.5" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.5.tgz#e4ab27709de46ff29bd8db52b0c51606acba893b" + integrity sha512-pXqR0qtb2bTwLkev4SE3r4abCNioP3GkjvIDLlzziPpXtHgiJIjuKl+1GN6ESOT3wMjG3JTeARopj2SwYaHTOA== dependencies: esbuild "^0.21.3" postcss "^8.4.43" From 45aab46db363907394e4b3a3488a427dad77bd57 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 17 Sep 2024 09:55:49 +1000 Subject: [PATCH 07/22] Lithuanian (#8134) * Add lithuanian support to backend * Lithuanian support for frontend --- src/backend/InvenTree/InvenTree/locales.py | 3 + .../InvenTree/locale/lt/LC_MESSAGES/django.po | 15423 ++++++++++++++++ src/frontend/.linguirc | 1 + src/frontend/src/contexts/LanguageContext.tsx | 1 + src/frontend/src/locales/lt/messages.d.ts | 4 + src/frontend/src/locales/lt/messages.po | 6879 +++++++ 6 files changed, 22311 insertions(+) create mode 100644 src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po create mode 100644 src/frontend/src/locales/lt/messages.d.ts create mode 100644 src/frontend/src/locales/lt/messages.po diff --git a/src/backend/InvenTree/InvenTree/locales.py b/src/backend/InvenTree/InvenTree/locales.py index 62e3a8bd9d..f68b0ae148 100644 --- a/src/backend/InvenTree/InvenTree/locales.py +++ b/src/backend/InvenTree/InvenTree/locales.py @@ -10,6 +10,8 @@ Additionally, update the following files with the new locale code: - /src/frontend/.linguirc file - /src/frontend/src/contexts/LanguageContext.tsx + +(and then run "invoke int.frontend-trans") """ from django.utils.translation import gettext_lazy as _ @@ -34,6 +36,7 @@ LOCALES = [ ('it', _('Italian')), ('ja', _('Japanese')), ('ko', _('Korean')), + ('lt', _('Lithuanian')), ('lv', _('Latvian')), ('nl', _('Dutch')), ('no', _('Norwegian')), diff --git a/src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po b/src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po new file mode 100644 index 0000000000..b7fb4a67cd --- /dev/null +++ b/src/backend/InvenTree/locale/lt/LC_MESSAGES/django.po @@ -0,0 +1,15423 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-16 23:18+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\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" +#: InvenTree/api.py:269 +msgid "API endpoint not found" +msgstr "" + +#: InvenTree/api.py:499 +msgid "User does not have permission to view this model" +msgstr "" + +#: InvenTree/conversion.py:161 +#, python-brace-format +msgid "Invalid unit provided ({unit})" +msgstr "" + +#: InvenTree/conversion.py:178 +msgid "No value provided" +msgstr "" + +#: InvenTree/conversion.py:205 +#, python-brace-format +msgid "Could not convert {original} to {unit}" +msgstr "" + +#: InvenTree/conversion.py:207 +msgid "Invalid quantity supplied" +msgstr "" + +#: InvenTree/conversion.py:221 +#, python-brace-format +msgid "Invalid quantity supplied ({exc})" +msgstr "" + +#: InvenTree/exceptions.py:104 +msgid "Error details can be found in the admin panel" +msgstr "" + +#: InvenTree/fields.py:135 +msgid "Enter date" +msgstr "" + +#: InvenTree/fields.py:204 InvenTree/models.py:926 build/serializers.py:512 +#: build/serializers.py:590 build/templates/build/sidebar.html:29 +#: company/models.py:833 +#: company/templates/company/manufacturer_part_sidebar.html:11 +#: company/templates/company/sidebar.html:37 +#: company/templates/company/supplier_part_sidebar.html:11 order/models.py:1373 +#: order/templates/order/po_sidebar.html:11 +#: order/templates/order/return_order_sidebar.html:9 +#: order/templates/order/so_sidebar.html:17 part/admin.py:59 +#: part/models.py:3296 part/templates/part/part_sidebar.html:65 +#: report/templates/report/inventree_build_order_report.html:172 +#: stock/admin.py:231 stock/models.py:2367 stock/models.py:2552 +#: stock/serializers.py:705 stock/serializers.py:863 stock/serializers.py:989 +#: stock/serializers.py:1039 stock/serializers.py:1350 +#: stock/serializers.py:1439 stock/serializers.py:1604 +#: stock/templates/stock/stock_sidebar.html:25 +#: templates/js/translated/barcode.js:143 templates/js/translated/bom.js:1265 +#: templates/js/translated/company.js:1684 templates/js/translated/order.js:372 +#: templates/js/translated/part.js:1087 +#: templates/js/translated/purchase_order.js:2270 +#: templates/js/translated/return_order.js:774 +#: templates/js/translated/sales_order.js:1103 +#: templates/js/translated/sales_order.js:2018 +#: templates/js/translated/stock.js:1621 templates/js/translated/stock.js:2514 +msgid "Notes" +msgstr "" + +#: InvenTree/format.py:162 +#, python-brace-format +msgid "Value '{name}' does not appear in pattern format" +msgstr "" + +#: InvenTree/format.py:173 +msgid "Provided value does not match required pattern: " +msgstr "" + +#: InvenTree/forms.py:129 +msgid "Enter password" +msgstr "" + +#: InvenTree/forms.py:130 +msgid "Enter new password" +msgstr "" + +#: InvenTree/forms.py:139 +msgid "Confirm password" +msgstr "" + +#: InvenTree/forms.py:140 +msgid "Confirm new password" +msgstr "" + +#: InvenTree/forms.py:144 +msgid "Old password" +msgstr "" + +#: InvenTree/forms.py:183 +msgid "Email (again)" +msgstr "" + +#: InvenTree/forms.py:187 +msgid "Email address confirmation" +msgstr "" + +#: InvenTree/forms.py:210 +msgid "You must type the same email each time." +msgstr "" + +#: InvenTree/forms.py:221 +msgid "MFA Registration is disabled." +msgstr "" + +#: InvenTree/forms.py:259 InvenTree/forms.py:267 +msgid "The provided primary email address is not valid." +msgstr "" + +#: InvenTree/forms.py:273 +msgid "The provided email domain is not approved." +msgstr "" + +#: InvenTree/forms.py:402 +msgid "Registration is disabled." +msgstr "" + +#: InvenTree/helpers.py:488 order/models.py:568 order/models.py:811 +msgid "Invalid quantity provided" +msgstr "" + +#: InvenTree/helpers.py:493 +msgid "Empty serial number string" +msgstr "" + +#: InvenTree/helpers.py:522 +msgid "Duplicate serial" +msgstr "" + +#: InvenTree/helpers.py:554 InvenTree/helpers.py:597 +#, python-brace-format +msgid "Invalid group range: {group}" +msgstr "" + +#: InvenTree/helpers.py:585 +#, python-brace-format +msgid "Group range {group} exceeds allowed quantity ({expected_quantity})" +msgstr "" + +#: InvenTree/helpers.py:615 InvenTree/helpers.py:622 InvenTree/helpers.py:641 +#, python-brace-format +msgid "Invalid group sequence: {group}" +msgstr "" + +#: InvenTree/helpers.py:651 +msgid "No serial numbers found" +msgstr "" + +#: InvenTree/helpers.py:656 +msgid "Number of unique serial numbers ({len(serials)}) must match quantity ({expected_quantity})" +msgstr "" + +#: InvenTree/helpers.py:774 +msgid "Remove HTML tags from this value" +msgstr "" + +#: InvenTree/helpers_model.py:130 +msgid "Connection error" +msgstr "" + +#: InvenTree/helpers_model.py:135 InvenTree/helpers_model.py:142 +msgid "Server responded with invalid status code" +msgstr "" + +#: InvenTree/helpers_model.py:138 +msgid "Exception occurred" +msgstr "" + +#: InvenTree/helpers_model.py:148 +msgid "Server responded with invalid Content-Length value" +msgstr "" + +#: InvenTree/helpers_model.py:151 +msgid "Image size is too large" +msgstr "" + +#: InvenTree/helpers_model.py:163 +msgid "Image download exceeded maximum size" +msgstr "" + +#: InvenTree/helpers_model.py:168 +msgid "Remote server returned empty response" +msgstr "" + +#: InvenTree/helpers_model.py:176 +msgid "Supplied URL is not a valid image file" +msgstr "" + +#: InvenTree/locales.py:18 +msgid "Arabic" +msgstr "" + +#: InvenTree/locales.py:19 +msgid "Bulgarian" +msgstr "" + +#: InvenTree/locales.py:20 +msgid "Czech" +msgstr "" + +#: InvenTree/locales.py:21 +msgid "Danish" +msgstr "" + +#: InvenTree/locales.py:22 +msgid "German" +msgstr "" + +#: InvenTree/locales.py:23 +msgid "Greek" +msgstr "" + +#: InvenTree/locales.py:24 +msgid "English" +msgstr "" + +#: InvenTree/locales.py:25 +msgid "Spanish" +msgstr "" + +#: InvenTree/locales.py:26 +msgid "Spanish (Mexican)" +msgstr "" + +#: InvenTree/locales.py:27 +msgid "Estonian" +msgstr "" + +#: InvenTree/locales.py:28 +msgid "Farsi / Persian" +msgstr "" + +#: InvenTree/locales.py:29 +msgid "Finnish" +msgstr "" + +#: InvenTree/locales.py:30 +msgid "French" +msgstr "" + +#: InvenTree/locales.py:31 +msgid "Hebrew" +msgstr "" + +#: InvenTree/locales.py:32 +msgid "Hindi" +msgstr "" + +#: InvenTree/locales.py:33 +msgid "Hungarian" +msgstr "" + +#: InvenTree/locales.py:34 +msgid "Italian" +msgstr "" + +#: InvenTree/locales.py:35 +msgid "Japanese" +msgstr "" + +#: InvenTree/locales.py:36 +msgid "Korean" +msgstr "" + +#: InvenTree/locales.py:37 +msgid "Lithuanian" +msgstr "" + +#: InvenTree/locales.py:38 +msgid "Latvian" +msgstr "" + +#: InvenTree/locales.py:39 +msgid "Dutch" +msgstr "" + +#: InvenTree/locales.py:40 +msgid "Norwegian" +msgstr "" + +#: InvenTree/locales.py:41 +msgid "Polish" +msgstr "" + +#: InvenTree/locales.py:42 +msgid "Portuguese" +msgstr "" + +#: InvenTree/locales.py:43 +msgid "Portuguese (Brazilian)" +msgstr "" + +#: InvenTree/locales.py:44 +msgid "Romanian" +msgstr "" + +#: InvenTree/locales.py:45 +msgid "Russian" +msgstr "" + +#: InvenTree/locales.py:46 +msgid "Slovak" +msgstr "" + +#: InvenTree/locales.py:47 +msgid "Slovenian" +msgstr "" + +#: InvenTree/locales.py:48 +msgid "Serbian" +msgstr "" + +#: InvenTree/locales.py:49 +msgid "Swedish" +msgstr "" + +#: InvenTree/locales.py:50 +msgid "Thai" +msgstr "" + +#: InvenTree/locales.py:51 +msgid "Turkish" +msgstr "" + +#: InvenTree/locales.py:52 +msgid "Ukrainian" +msgstr "" + +#: InvenTree/locales.py:53 +msgid "Vietnamese" +msgstr "" + +#: InvenTree/locales.py:54 +msgid "Chinese (Simplified)" +msgstr "" + +#: InvenTree/locales.py:55 +msgid "Chinese (Traditional)" +msgstr "" + +#: InvenTree/magic_login.py:28 +#, python-brace-format +msgid "[{site_name}] Log in to the app" +msgstr "" + +#: InvenTree/magic_login.py:38 InvenTree/serializers.py:416 +#: company/models.py:133 company/templates/company/company_base.html:138 +#: templates/InvenTree/settings/user.html:49 +#: templates/js/translated/company.js:677 +msgid "Email" +msgstr "" + +#: InvenTree/models.py:103 +msgid "Error running plugin validation" +msgstr "" + +#: InvenTree/models.py:172 +msgid "Metadata must be a python dict object" +msgstr "" + +#: InvenTree/models.py:178 +msgid "Plugin Metadata" +msgstr "" + +#: InvenTree/models.py:179 +msgid "JSON metadata field, for use by external plugins" +msgstr "" + +#: InvenTree/models.py:406 +msgid "Improperly formatted pattern" +msgstr "" + +#: InvenTree/models.py:413 +msgid "Unknown format key specified" +msgstr "" + +#: InvenTree/models.py:419 +msgid "Missing required format key" +msgstr "" + +#: InvenTree/models.py:430 +msgid "Reference field cannot be empty" +msgstr "" + +#: InvenTree/models.py:438 +msgid "Reference must match required pattern" +msgstr "" + +#: InvenTree/models.py:469 +msgid "Reference number is too large" +msgstr "" + +#: InvenTree/models.py:720 +msgid "Duplicate names cannot exist under the same parent" +msgstr "" + +#: InvenTree/models.py:737 +msgid "Invalid choice" +msgstr "" + +#: InvenTree/models.py:767 common/models.py:2705 common/models.py:3132 +#: common/models.py:3352 common/serializers.py:455 company/models.py:590 +#: machine/models.py:24 part/models.py:995 part/models.py:3763 +#: plugin/models.py:51 report/models.py:149 stock/models.py:82 +#: templates/InvenTree/settings/mixins/urls.html:13 +#: templates/InvenTree/settings/notifications.html:17 +#: templates/InvenTree/settings/plugin.html:83 +#: templates/InvenTree/settings/plugin_settings.html:22 +#: templates/InvenTree/settings/settings_staff_js.html:67 +#: templates/InvenTree/settings/settings_staff_js.html:454 +#: templates/js/translated/company.js:676 +#: templates/js/translated/company.js:724 +#: templates/js/translated/company.js:913 +#: templates/js/translated/company.js:1165 +#: templates/js/translated/company.js:1413 templates/js/translated/part.js:1193 +#: templates/js/translated/part.js:1481 templates/js/translated/part.js:1617 +#: templates/js/translated/part.js:2768 templates/js/translated/stock.js:2802 +msgid "Name" +msgstr "" + +#: InvenTree/models.py:773 build/models.py:251 +#: build/templates/build/detail.html:24 common/models.py:158 +#: company/models.py:518 company/models.py:824 +#: company/templates/company/company_base.html:77 +#: company/templates/company/manufacturer_part.html:75 +#: company/templates/company/supplier_part.html:107 order/models.py:289 +#: order/models.py:1406 part/admin.py:305 part/admin.py:411 part/models.py:1018 +#: part/models.py:3778 part/templates/part/category.html:79 +#: part/templates/part/part_base.html:170 +#: part/templates/part/part_scheduling.html:12 report/models.py:155 +#: report/models.py:517 report/models.py:543 +#: report/templates/report/inventree_build_order_report.html:117 +#: stock/admin.py:54 stock/models.py:88 stock/templates/stock/location.html:122 +#: templates/InvenTree/settings/notifications.html:19 +#: templates/InvenTree/settings/plugin_settings.html:27 +#: templates/InvenTree/settings/settings_staff_js.html:170 +#: templates/InvenTree/settings/settings_staff_js.html:459 +#: templates/js/translated/bom.js:633 templates/js/translated/bom.js:963 +#: templates/js/translated/build.js:2314 templates/js/translated/company.js:519 +#: templates/js/translated/company.js:1330 +#: templates/js/translated/company.js:1641 templates/js/translated/index.js:119 +#: templates/js/translated/order.js:323 templates/js/translated/part.js:1245 +#: templates/js/translated/part.js:1490 templates/js/translated/part.js:1628 +#: templates/js/translated/part.js:1965 templates/js/translated/part.js:2361 +#: templates/js/translated/part.js:2803 templates/js/translated/part.js:2915 +#: templates/js/translated/plugin.js:80 +#: templates/js/translated/purchase_order.js:1776 +#: templates/js/translated/purchase_order.js:1919 +#: templates/js/translated/purchase_order.js:2092 +#: templates/js/translated/return_order.js:313 +#: templates/js/translated/sales_order.js:838 +#: templates/js/translated/sales_order.js:1848 +#: templates/js/translated/stock.js:1600 templates/js/translated/stock.js:2144 +#: templates/js/translated/stock.js:2833 templates/js/translated/stock.js:2916 +msgid "Description" +msgstr "" + +#: InvenTree/models.py:774 stock/models.py:89 +msgid "Description (optional)" +msgstr "" + +#: InvenTree/models.py:789 templates/js/translated/part.js:2812 +#: templates/js/translated/stock.js:2842 +msgid "Path" +msgstr "" + +#: InvenTree/models.py:926 +msgid "Markdown notes (optional)" +msgstr "" + +#: InvenTree/models.py:957 +msgid "Barcode Data" +msgstr "" + +#: InvenTree/models.py:958 +msgid "Third party barcode data" +msgstr "" + +#: InvenTree/models.py:964 +msgid "Barcode Hash" +msgstr "" + +#: InvenTree/models.py:965 +msgid "Unique hash of barcode data" +msgstr "" + +#: InvenTree/models.py:1032 +msgid "Existing barcode found" +msgstr "" + +#: InvenTree/models.py:1075 +msgid "Server Error" +msgstr "" + +#: InvenTree/models.py:1076 +msgid "An error has been logged by the server." +msgstr "" + +#: InvenTree/serializers.py:63 part/models.py:4387 +msgid "Must be a valid number" +msgstr "" + +#: InvenTree/serializers.py:100 company/models.py:183 +#: company/templates/company/company_base.html:112 part/models.py:3114 +#: templates/InvenTree/settings/settings_staff_js.html:44 +#: templates/currency_data.html:5 +msgid "Currency" +msgstr "" + +#: InvenTree/serializers.py:103 +msgid "Select currency from available options" +msgstr "" + +#: InvenTree/serializers.py:405 templates/InvenTree/settings/user.html:33 +msgid "Username" +msgstr "" + +#: InvenTree/serializers.py:408 templates/InvenTree/settings/user.html:37 +msgid "First Name" +msgstr "" + +#: InvenTree/serializers.py:408 +msgid "First name of the user" +msgstr "" + +#: InvenTree/serializers.py:412 templates/InvenTree/settings/user.html:41 +msgid "Last Name" +msgstr "" + +#: InvenTree/serializers.py:412 +msgid "Last name of the user" +msgstr "" + +#: InvenTree/serializers.py:416 +msgid "Email address of the user" +msgstr "" + +#: InvenTree/serializers.py:441 +msgid "Staff" +msgstr "" + +#: InvenTree/serializers.py:441 +msgid "Does this user have staff permissions" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Superuser" +msgstr "" + +#: InvenTree/serializers.py:445 +msgid "Is this user a superuser" +msgstr "" + +#: InvenTree/serializers.py:449 common/models.py:2710 company/models.py:160 +#: company/models.py:798 machine/models.py:39 part/admin.py:88 +#: part/models.py:1201 plugin/models.py:66 +#: templates/js/translated/company.js:523 +#: templates/js/translated/table_filters.js:134 +#: templates/js/translated/table_filters.js:226 +#: templates/js/translated/table_filters.js:513 +#: templates/js/translated/table_filters.js:541 +#: templates/js/translated/table_filters.js:719 +#: templates/js/translated/table_filters.js:808 users/models.py:182 +msgid "Active" +msgstr "" + +#: InvenTree/serializers.py:449 +msgid "Is this user account active" +msgstr "" + +#: InvenTree/serializers.py:467 +msgid "You do not have permission to change this user role." +msgstr "" + +#: InvenTree/serializers.py:503 +msgid "Only superusers can create new users" +msgstr "" + +#: InvenTree/serializers.py:522 +msgid "Your account has been created." +msgstr "" + +#: InvenTree/serializers.py:524 +msgid "Please use the password reset function to login" +msgstr "" + +#: InvenTree/serializers.py:531 +msgid "Welcome to InvenTree" +msgstr "" + +#: InvenTree/serializers.py:589 +msgid "Invalid value" +msgstr "" + +#: InvenTree/serializers.py:609 importer/models.py:64 +msgid "Data File" +msgstr "" + +#: InvenTree/serializers.py:610 +msgid "Select data file for upload" +msgstr "" + +#: InvenTree/serializers.py:627 +msgid "Unsupported file type" +msgstr "" + +#: InvenTree/serializers.py:633 +msgid "File is too large" +msgstr "" + +#: InvenTree/serializers.py:654 +msgid "No columns found in file" +msgstr "" + +#: InvenTree/serializers.py:657 +msgid "No data rows found in file" +msgstr "" + +#: InvenTree/serializers.py:769 +msgid "No data rows provided" +msgstr "" + +#: InvenTree/serializers.py:772 +msgid "No data columns supplied" +msgstr "" + +#: InvenTree/serializers.py:838 +#, python-brace-format +msgid "Missing required column: '{name}'" +msgstr "" + +#: InvenTree/serializers.py:847 +#, python-brace-format +msgid "Duplicate column: '{col}'" +msgstr "" + +#: InvenTree/serializers.py:886 +msgid "Remote Image" +msgstr "" + +#: InvenTree/serializers.py:887 +msgid "URL of remote image file" +msgstr "" + +#: InvenTree/serializers.py:905 +msgid "Downloading images from remote URL is not enabled" +msgstr "" + +#: InvenTree/status.py:65 part/serializers.py:1265 +msgid "Background worker check failed" +msgstr "" + +#: InvenTree/status.py:69 +msgid "Email backend not configured" +msgstr "" + +#: InvenTree/status.py:72 +msgid "InvenTree system health checks failed" +msgstr "" + +#: InvenTree/templatetags/inventree_extras.py:184 +msgid "Unknown database" +msgstr "" + +#: InvenTree/validators.py:32 +msgid "Invalid physical unit" +msgstr "" + +#: InvenTree/validators.py:38 +msgid "Not a valid currency code" +msgstr "" + +#: InvenTree/validators.py:115 InvenTree/validators.py:131 +msgid "Overage value must not be negative" +msgstr "" + +#: InvenTree/validators.py:133 +msgid "Overage must not exceed 100%" +msgstr "" + +#: InvenTree/validators.py:139 +msgid "Invalid value for overage" +msgstr "" + +#: InvenTree/views.py:399 templates/InvenTree/settings/user.html:23 +msgid "Edit User Information" +msgstr "" + +#: InvenTree/views.py:411 templates/InvenTree/settings/user.html:20 +msgid "Set Password" +msgstr "" + +#: InvenTree/views.py:433 +msgid "Password fields must match" +msgstr "" + +#: InvenTree/views.py:441 +msgid "Wrong password provided" +msgstr "" + +#: InvenTree/views.py:645 templates/navbar.html:160 +msgid "System Information" +msgstr "" + +#: InvenTree/views.py:652 templates/navbar.html:171 +msgid "About InvenTree" +msgstr "" + +#: build/api.py:53 build/models.py:262 +#: build/templates/build/build_base.html:191 +#: build/templates/build/detail.html:87 +msgid "Parent Build" +msgstr "" + +#: build/api.py:59 +msgid "Ancestor Build" +msgstr "" + +#: build/api.py:78 order/api.py:92 templates/js/translated/table_filters.js:101 +#: templates/js/translated/table_filters.js:549 +#: templates/js/translated/table_filters.js:633 +#: templates/js/translated/table_filters.js:674 +msgid "Assigned to me" +msgstr "" + +#: build/api.py:95 build/templates/build/build_base.html:205 +#: build/templates/build/detail.html:115 +#: report/templates/report/inventree_build_order_report.html:152 +#: templates/js/translated/table_filters.js:552 +msgid "Issued By" +msgstr "" + +#: build/api.py:114 +msgid "Assigned To" +msgstr "" + +#: build/api.py:275 +msgid "Build must be cancelled before it can be deleted" +msgstr "" + +#: build/api.py:319 build/serializers.py:1332 part/models.py:4265 +#: templates/js/translated/bom.js:997 templates/js/translated/bom.js:1037 +#: templates/js/translated/build.js:2705 +#: templates/js/translated/table_filters.js:197 +#: templates/js/translated/table_filters.js:586 +msgid "Consumable" +msgstr "" + +#: build/api.py:320 build/serializers.py:1333 part/models.py:4259 +#: part/templates/part/upload_bom.html:58 templates/js/translated/bom.js:1001 +#: templates/js/translated/bom.js:1028 templates/js/translated/build.js:2696 +#: templates/js/translated/table_filters.js:193 +#: templates/js/translated/table_filters.js:222 +#: templates/js/translated/table_filters.js:590 +msgid "Optional" +msgstr "" + +#: build/api.py:321 common/models.py:1491 part/admin.py:91 part/admin.py:428 +#: part/models.py:1166 part/serializers.py:1594 +#: templates/js/translated/bom.js:1639 +#: templates/js/translated/table_filters.js:337 +#: templates/js/translated/table_filters.js:729 +msgid "Assembly" +msgstr "" + +#: build/api.py:322 templates/js/translated/table_filters.js:415 +#: templates/js/translated/table_filters.js:582 +msgid "Tracked" +msgstr "" + +#: build/api.py:323 build/serializers.py:1334 part/models.py:1184 +#: templates/js/translated/table_filters.js:146 +#: templates/js/translated/table_filters.js:779 +msgid "Testable" +msgstr "" + +#: build/api.py:325 part/admin.py:144 templates/js/translated/build.js:1920 +#: templates/js/translated/build.js:2823 +#: templates/js/translated/sales_order.js:1965 +#: templates/js/translated/table_filters.js:574 +msgid "Allocated" +msgstr "" + +#: build/api.py:333 company/models.py:888 company/serializers.py:399 +#: company/templates/company/supplier_part.html:114 +#: templates/email/build_order_required_stock.html:19 +#: templates/email/low_stock_notification.html:17 +#: templates/js/translated/bom.js:1162 templates/js/translated/build.js:2755 +#: templates/js/translated/index.js:123 +#: templates/js/translated/model_renderers.js:235 +#: templates/js/translated/part.js:695 templates/js/translated/part.js:697 +#: templates/js/translated/part.js:702 +#: templates/js/translated/table_filters.js:347 +#: templates/js/translated/table_filters.js:578 +msgid "Available" +msgstr "" + +#: build/models.py:88 build/templates/build/build_base.html:9 +#: build/templates/build/build_base.html:27 +#: report/templates/report/inventree_build_order_report.html:105 +#: stock/serializers.py:85 templates/email/build_order_completed.html:16 +#: templates/email/overdue_build_order.html:15 +#: templates/js/translated/build.js:1148 templates/js/translated/stock.js:2977 +msgid "Build Order" +msgstr "" + +#: build/models.py:89 build/templates/build/build_base.html:13 +#: build/templates/build/index.html:8 build/templates/build/index.html:12 +#: order/templates/order/sales_order_detail.html:111 +#: order/templates/order/so_sidebar.html:13 +#: part/templates/part/part_sidebar.html:22 templates/InvenTree/index.html:196 +#: templates/InvenTree/search.html:141 +#: templates/InvenTree/settings/sidebar.html:55 +#: templates/js/translated/search.js:186 users/models.py:207 +msgid "Build Orders" +msgstr "" + +#: build/models.py:136 +msgid "Assembly BOM has not been validated" +msgstr "" + +#: build/models.py:143 +msgid "Build order cannot be created for an inactive part" +msgstr "" + +#: build/models.py:150 +msgid "Build order cannot be created for an unlocked part" +msgstr "" + +#: build/models.py:164 +msgid "Invalid choice for parent build" +msgstr "" + +#: build/models.py:175 order/models.py:240 +msgid "Responsible user or group must be specified" +msgstr "" + +#: build/models.py:181 +msgid "Build order part cannot be changed" +msgstr "" + +#: build/models.py:242 +msgid "Build Order Reference" +msgstr "" + +#: build/models.py:243 build/serializers.py:1331 order/models.py:468 +#: order/models.py:979 order/models.py:1366 order/models.py:2128 +#: part/admin.py:414 part/models.py:4280 part/templates/part/upload_bom.html:54 +#: report/templates/report/inventree_bill_of_materials_report.html:139 +#: report/templates/report/inventree_purchase_order_report.html:28 +#: report/templates/report/inventree_return_order_report.html:26 +#: report/templates/report/inventree_sales_order_report.html:28 +#: templates/js/translated/bom.js:770 templates/js/translated/bom.js:973 +#: templates/js/translated/build.js:1014 templates/js/translated/build.js:2688 +#: templates/js/translated/order.js:316 templates/js/translated/pricing.js:386 +#: templates/js/translated/purchase_order.js:2135 +#: templates/js/translated/return_order.js:727 +#: templates/js/translated/sales_order.js:1854 +msgid "Reference" +msgstr "" + +#: build/models.py:254 +msgid "Brief description of the build (optional)" +msgstr "" + +#: build/models.py:263 +msgid "BuildOrder to which this build is allocated" +msgstr "" + +#: build/models.py:268 build/serializers.py:1322 +#: build/templates/build/build_base.html:105 +#: build/templates/build/detail.html:29 company/models.py:1043 order/api.py:761 +#: order/models.py:1496 order/models.py:1651 order/models.py:1652 +#: part/api.py:1506 part/api.py:1806 part/models.py:419 part/models.py:3125 +#: part/models.py:3269 part/models.py:3417 part/models.py:3438 +#: part/models.py:3460 part/models.py:3596 part/models.py:3938 +#: part/models.py:4101 part/models.py:4231 part/models.py:4595 +#: part/serializers.py:1211 part/serializers.py:1855 +#: part/templates/part/part_app_base.html:8 +#: part/templates/part/part_pricing.html:12 +#: part/templates/part/upload_bom.html:52 +#: report/templates/report/inventree_bill_of_materials_report.html:110 +#: report/templates/report/inventree_bill_of_materials_report.html:137 +#: report/templates/report/inventree_build_order_report.html:109 +#: report/templates/report/inventree_purchase_order_report.html:27 +#: report/templates/report/inventree_return_order_report.html:24 +#: report/templates/report/inventree_sales_order_report.html:27 +#: report/templates/report/inventree_stock_location_report.html:102 +#: stock/serializers.py:112 stock/serializers.py:160 stock/serializers.py:453 +#: stock/serializers.py:923 templates/InvenTree/search.html:82 +#: templates/email/build_order_completed.html:17 +#: templates/email/build_order_required_stock.html:17 +#: templates/email/low_stock_notification.html:15 +#: templates/email/overdue_build_order.html:16 +#: templates/js/translated/barcode.js:577 templates/js/translated/bom.js:632 +#: templates/js/translated/bom.js:769 templates/js/translated/bom.js:905 +#: templates/js/translated/build.js:1005 templates/js/translated/build.js:1488 +#: templates/js/translated/build.js:1919 templates/js/translated/build.js:2337 +#: templates/js/translated/build.js:2510 templates/js/translated/company.js:348 +#: templates/js/translated/company.js:1116 +#: templates/js/translated/company.js:1271 +#: templates/js/translated/company.js:1559 templates/js/translated/index.js:109 +#: templates/js/translated/part.js:1950 templates/js/translated/part.js:2022 +#: templates/js/translated/part.js:2330 templates/js/translated/pricing.js:369 +#: templates/js/translated/purchase_order.js:751 +#: templates/js/translated/purchase_order.js:1367 +#: templates/js/translated/purchase_order.js:1918 +#: templates/js/translated/purchase_order.js:2077 +#: templates/js/translated/return_order.js:538 +#: templates/js/translated/return_order.js:708 +#: templates/js/translated/sales_order.js:300 +#: templates/js/translated/sales_order.js:1233 +#: templates/js/translated/sales_order.js:1634 +#: templates/js/translated/sales_order.js:1832 +#: templates/js/translated/stock.js:682 templates/js/translated/stock.js:848 +#: templates/js/translated/stock.js:1065 templates/js/translated/stock.js:2083 +#: templates/js/translated/stock.js:2942 templates/js/translated/stock.js:3175 +#: templates/js/translated/stock.js:3320 +msgid "Part" +msgstr "" + +#: build/models.py:276 +msgid "Select part to build" +msgstr "" + +#: build/models.py:281 +msgid "Sales Order Reference" +msgstr "" + +#: build/models.py:285 +msgid "SalesOrder to which this build is allocated" +msgstr "" + +#: build/models.py:290 build/serializers.py:1092 +#: templates/js/translated/build.js:1907 +#: templates/js/translated/sales_order.js:1221 +msgid "Source Location" +msgstr "" + +#: build/models.py:294 +msgid "Select location to take stock from for this build (leave blank to take from any stock location)" +msgstr "" + +#: build/models.py:299 +msgid "Destination Location" +msgstr "" + +#: build/models.py:303 +msgid "Select location where the completed items will be stored" +msgstr "" + +#: build/models.py:307 +msgid "Build Quantity" +msgstr "" + +#: build/models.py:310 +msgid "Number of stock items to build" +msgstr "" + +#: build/models.py:314 +msgid "Completed items" +msgstr "" + +#: build/models.py:316 +msgid "Number of stock items which have been completed" +msgstr "" + +#: build/models.py:320 +msgid "Build Status" +msgstr "" + +#: build/models.py:324 +msgid "Build status code" +msgstr "" + +#: build/models.py:333 build/serializers.py:346 build/serializers.py:1242 +#: order/serializers.py:671 stock/models.py:863 stock/serializers.py:77 +#: stock/serializers.py:1569 templates/js/translated/purchase_order.js:1129 +#: templates/js/translated/stock.js:1199 +msgid "Batch Code" +msgstr "" + +#: build/models.py:337 build/serializers.py:347 +msgid "Batch code for this build output" +msgstr "" + +#: build/models.py:340 order/models.py:316 order/serializers.py:127 +#: part/models.py:1241 part/templates/part/part_base.html:326 +#: templates/js/translated/return_order.js:338 +#: templates/js/translated/sales_order.js:863 +msgid "Creation Date" +msgstr "" + +#: build/models.py:344 +msgid "Target completion date" +msgstr "" + +#: build/models.py:345 +msgid "Target date for build completion. Build will be overdue after this date." +msgstr "" + +#: build/models.py:348 order/models.py:527 order/models.py:2173 +#: templates/js/translated/build.js:2422 +msgid "Completion Date" +msgstr "" + +#: build/models.py:354 +msgid "completed by" +msgstr "" + +#: build/models.py:362 templates/js/translated/build.js:2382 +msgid "Issued by" +msgstr "" + +#: build/models.py:363 +msgid "User who issued this build order" +msgstr "" + +#: build/models.py:371 build/templates/build/build_base.html:212 +#: build/templates/build/detail.html:122 common/models.py:167 order/api.py:142 +#: order/models.py:334 order/templates/order/order_base.html:222 +#: order/templates/order/return_order_base.html:191 +#: order/templates/order/sales_order_base.html:235 part/models.py:1258 +#: part/templates/part/part_base.html:406 +#: report/templates/report/inventree_build_order_report.html:158 +#: templates/InvenTree/settings/settings_staff_js.html:150 +#: templates/js/translated/build.js:2394 +#: templates/js/translated/purchase_order.js:1833 +#: templates/js/translated/return_order.js:358 +#: templates/js/translated/table_filters.js:551 +msgid "Responsible" +msgstr "" + +#: build/models.py:372 +msgid "User or group responsible for this build order" +msgstr "" + +#: build/models.py:377 build/templates/build/detail.html:108 +#: company/templates/company/manufacturer_part.html:107 +#: company/templates/company/supplier_part.html:194 +#: order/templates/order/order_base.html:172 +#: order/templates/order/return_order_base.html:148 +#: order/templates/order/sales_order_base.html:187 +#: part/templates/part/part_base.html:399 stock/models.py:859 +#: stock/templates/stock/item_base.html:196 +#: templates/js/translated/company.js:1019 +msgid "External Link" +msgstr "" + +#: build/models.py:378 common/models.py:3273 part/models.py:1070 +#: stock/models.py:859 +msgid "Link to external URL" +msgstr "" + +#: build/models.py:382 +msgid "Build Priority" +msgstr "" + +#: build/models.py:385 +msgid "Priority of this build order" +msgstr "" + +#: build/models.py:392 common/models.py:137 common/models.py:151 +#: order/admin.py:18 order/api.py:128 order/models.py:298 +#: templates/InvenTree/settings/settings_staff_js.html:146 +#: templates/js/translated/build.js:2319 +#: templates/js/translated/purchase_order.js:1780 +#: templates/js/translated/return_order.js:317 +#: templates/js/translated/sales_order.js:842 +#: templates/js/translated/table_filters.js:47 +#: templates/project_code_data.html:6 +msgid "Project Code" +msgstr "" + +#: build/models.py:393 +msgid "Project code for this build order" +msgstr "" + +#: build/models.py:652 build/models.py:779 +msgid "Failed to offload task to complete build allocations" +msgstr "" + +#: build/models.py:674 +#, python-brace-format +msgid "Build order {build} has been completed" +msgstr "" + +#: build/models.py:680 +msgid "A build order has been completed" +msgstr "" + +#: build/models.py:968 build/models.py:1057 +msgid "No build output specified" +msgstr "" + +#: build/models.py:971 +msgid "Build output is already completed" +msgstr "" + +#: build/models.py:974 +msgid "Build output does not match Build Order" +msgstr "" + +#: build/models.py:1061 build/serializers.py:279 build/serializers.py:328 +#: build/serializers.py:959 order/models.py:565 order/serializers.py:500 +#: order/serializers.py:666 part/serializers.py:1588 part/serializers.py:2017 +#: stock/models.py:704 stock/models.py:1515 stock/serializers.py:676 +msgid "Quantity must be greater than zero" +msgstr "" + +#: build/models.py:1066 build/serializers.py:284 +msgid "Quantity cannot be greater than the output quantity" +msgstr "" + +#: build/models.py:1126 build/serializers.py:607 +#, python-brace-format +msgid "Build output {serial} has not passed all required tests" +msgstr "" + +#: build/models.py:1477 +msgid "Build Order Line Item" +msgstr "" + +#: build/models.py:1502 +msgid "Build object" +msgstr "" + +#: build/models.py:1516 build/models.py:1775 build/serializers.py:266 +#: build/serializers.py:313 build/serializers.py:1339 +#: build/templates/build/build_base.html:110 +#: build/templates/build/detail.html:34 common/models.py:2582 +#: order/models.py:1349 order/models.py:2034 order/serializers.py:1464 +#: order/templates/order/order_wizard/match_parts.html:30 part/admin.py:413 +#: part/forms.py:48 part/models.py:3283 part/models.py:4253 +#: part/templates/part/part_pricing.html:16 +#: part/templates/part/upload_bom.html:53 +#: report/templates/report/inventree_bill_of_materials_report.html:138 +#: report/templates/report/inventree_build_order_report.html:113 +#: report/templates/report/inventree_purchase_order_report.html:29 +#: report/templates/report/inventree_sales_order_report.html:29 +#: report/templates/report/inventree_stock_location_report.html:104 +#: report/templates/report/inventree_test_report.html:90 +#: report/templates/report/inventree_test_report.html:169 stock/admin.py:160 +#: stock/serializers.py:128 stock/serializers.py:168 stock/serializers.py:667 +#: stock/templates/stock/item_base.html:283 +#: stock/templates/stock/item_base.html:291 +#: stock/templates/stock/item_base.html:338 +#: templates/email/build_order_completed.html:18 +#: templates/js/translated/barcode.js:579 templates/js/translated/bom.js:771 +#: templates/js/translated/bom.js:981 templates/js/translated/build.js:525 +#: templates/js/translated/build.js:740 templates/js/translated/build.js:1545 +#: templates/js/translated/build.js:1922 templates/js/translated/build.js:2532 +#: templates/js/translated/company.js:1818 +#: templates/js/translated/model_renderers.js:237 +#: templates/js/translated/order.js:329 templates/js/translated/part.js:968 +#: templates/js/translated/part.js:1818 templates/js/translated/part.js:3360 +#: templates/js/translated/pricing.js:381 +#: templates/js/translated/pricing.js:474 +#: templates/js/translated/pricing.js:522 +#: templates/js/translated/pricing.js:616 +#: templates/js/translated/purchase_order.js:754 +#: templates/js/translated/purchase_order.js:1922 +#: templates/js/translated/purchase_order.js:2141 +#: templates/js/translated/sales_order.js:317 +#: templates/js/translated/sales_order.js:1235 +#: templates/js/translated/sales_order.js:1554 +#: templates/js/translated/sales_order.js:1644 +#: templates/js/translated/sales_order.js:1734 +#: templates/js/translated/sales_order.js:1860 +#: templates/js/translated/stock.js:570 templates/js/translated/stock.js:708 +#: templates/js/translated/stock.js:879 templates/js/translated/stock.js:3106 +#: templates/js/translated/stock.js:3189 +msgid "Quantity" +msgstr "" + +#: build/models.py:1517 +msgid "Required quantity for build order" +msgstr "" + +#: build/models.py:1597 +msgid "Build item must specify a build output, as master part is marked as trackable" +msgstr "" + +#: build/models.py:1606 +#, python-brace-format +msgid "Allocated quantity ({q}) must not exceed available stock quantity ({a})" +msgstr "" + +#: build/models.py:1616 order/models.py:1985 +msgid "Stock item is over-allocated" +msgstr "" + +#: build/models.py:1622 order/models.py:1988 +msgid "Allocation quantity must be greater than zero" +msgstr "" + +#: build/models.py:1628 +msgid "Quantity must be 1 for serialized stock" +msgstr "" + +#: build/models.py:1687 +msgid "Selected stock item does not match BOM line" +msgstr "" + +#: build/models.py:1762 build/serializers.py:939 order/serializers.py:1301 +#: order/serializers.py:1322 stock/models.py:381 stock/serializers.py:94 +#: stock/serializers.py:770 stock/serializers.py:1288 stock/serializers.py:1400 +#: stock/templates/stock/item_base.html:10 +#: stock/templates/stock/item_base.html:23 +#: stock/templates/stock/item_base.html:190 +#: templates/js/translated/build.js:1921 +#: templates/js/translated/sales_order.js:301 +#: templates/js/translated/sales_order.js:1234 +#: templates/js/translated/sales_order.js:1535 +#: templates/js/translated/sales_order.js:1540 +#: templates/js/translated/sales_order.js:1641 +#: templates/js/translated/sales_order.js:1728 +#: templates/js/translated/stock.js:683 templates/js/translated/stock.js:849 +#: templates/js/translated/stock.js:3062 +msgid "Stock Item" +msgstr "" + +#: build/models.py:1763 +msgid "Source stock item" +msgstr "" + +#: build/models.py:1776 +msgid "Stock quantity to allocate to build" +msgstr "" + +#: build/models.py:1784 +msgid "Install into" +msgstr "" + +#: build/models.py:1785 +msgid "Destination stock item" +msgstr "" + +#: build/serializers.py:107 +msgid "Build Level" +msgstr "" + +#: build/serializers.py:115 build/serializers.py:1234 build/serializers.py:1323 +#: part/admin.py:41 part/admin.py:408 part/models.py:4103 part/stocktake.py:219 +#: stock/admin.py:157 +msgid "Part Name" +msgstr "" + +#: build/serializers.py:127 +msgid "Project Code Label" +msgstr "" + +#: build/serializers.py:133 +msgid "Create Child Builds" +msgstr "" + +#: build/serializers.py:134 +msgid "Automatically generate child build orders" +msgstr "" + +#: build/serializers.py:216 build/serializers.py:968 +#: templates/js/translated/build.js:1045 templates/js/translated/build.js:1498 +msgid "Build Output" +msgstr "" + +#: build/serializers.py:228 +msgid "Build output does not match the parent build" +msgstr "" + +#: build/serializers.py:232 +msgid "Output part does not match BuildOrder part" +msgstr "" + +#: build/serializers.py:236 +msgid "This build output has already been completed" +msgstr "" + +#: build/serializers.py:247 +msgid "This build output is not fully allocated" +msgstr "" + +#: build/serializers.py:267 build/serializers.py:314 +msgid "Enter quantity for build output" +msgstr "" + +#: build/serializers.py:335 +msgid "Integer quantity required for trackable parts" +msgstr "" + +#: build/serializers.py:338 +msgid "Integer quantity required, as the bill of materials contains trackable parts" +msgstr "" + +#: build/serializers.py:353 order/serializers.py:679 order/serializers.py:1468 +#: stock/serializers.py:687 templates/js/translated/purchase_order.js:1154 +#: templates/js/translated/stock.js:373 templates/js/translated/stock.js:571 +msgid "Serial Numbers" +msgstr "" + +#: build/serializers.py:354 +msgid "Enter serial numbers for build outputs" +msgstr "" + +#: build/serializers.py:359 build/serializers.py:500 build/serializers.py:572 +#: order/serializers.py:655 order/serializers.py:778 order/serializers.py:1797 +#: part/serializers.py:1231 stock/serializers.py:103 stock/serializers.py:698 +#: stock/serializers.py:858 stock/serializers.py:984 stock/serializers.py:1432 +#: stock/serializers.py:1688 stock/templates/stock/item_base.html:390 +#: templates/js/translated/barcode.js:578 +#: templates/js/translated/barcode.js:826 templates/js/translated/build.js:1035 +#: templates/js/translated/build.js:1177 templates/js/translated/build.js:2547 +#: templates/js/translated/purchase_order.js:1210 +#: templates/js/translated/purchase_order.js:1320 +#: templates/js/translated/sales_order.js:1547 +#: templates/js/translated/sales_order.js:1655 +#: templates/js/translated/sales_order.js:1663 +#: templates/js/translated/sales_order.js:1742 +#: templates/js/translated/stock.js:684 templates/js/translated/stock.js:850 +#: templates/js/translated/stock.js:1067 templates/js/translated/stock.js:2287 +#: templates/js/translated/stock.js:2956 +msgid "Location" +msgstr "" + +#: build/serializers.py:360 +msgid "Stock location for build output" +msgstr "" + +#: build/serializers.py:374 +msgid "Auto Allocate Serial Numbers" +msgstr "" + +#: build/serializers.py:375 +msgid "Automatically allocate required items with matching serial numbers" +msgstr "" + +#: build/serializers.py:390 +msgid "Serial numbers must be provided for trackable parts" +msgstr "" + +#: build/serializers.py:415 stock/api.py:1024 +msgid "The following serial numbers already exist or are invalid" +msgstr "" + +#: build/serializers.py:462 build/serializers.py:524 build/serializers.py:613 +msgid "A list of build outputs must be provided" +msgstr "" + +#: build/serializers.py:501 +msgid "Stock location for scrapped outputs" +msgstr "" + +#: build/serializers.py:507 +msgid "Discard Allocations" +msgstr "" + +#: build/serializers.py:508 +msgid "Discard any stock allocations for scrapped outputs" +msgstr "" + +#: build/serializers.py:513 +msgid "Reason for scrapping build output(s)" +msgstr "" + +#: build/serializers.py:573 +msgid "Location for completed build outputs" +msgstr "" + +#: build/serializers.py:579 build/templates/build/build_base.html:159 +#: build/templates/build/detail.html:62 order/models.py:477 +#: order/models.py:1003 order/models.py:2152 order/serializers.py:687 +#: stock/admin.py:165 stock/serializers.py:1035 stock/serializers.py:1576 +#: stock/templates/stock/item_base.html:423 +#: templates/js/translated/barcode.js:252 templates/js/translated/build.js:2366 +#: templates/js/translated/purchase_order.js:1371 +#: templates/js/translated/purchase_order.js:1792 +#: templates/js/translated/return_order.js:330 +#: templates/js/translated/sales_order.js:855 +#: templates/js/translated/stock.js:2262 templates/js/translated/stock.js:3080 +#: templates/js/translated/stock.js:3205 +msgid "Status" +msgstr "" + +#: build/serializers.py:585 +msgid "Accept Incomplete Allocation" +msgstr "" + +#: build/serializers.py:586 +msgid "Complete outputs if stock has not been fully allocated" +msgstr "" + +#: build/serializers.py:698 +msgid "Consume Allocated Stock" +msgstr "" + +#: build/serializers.py:699 +msgid "Consume any stock which has already been allocated to this build" +msgstr "" + +#: build/serializers.py:705 +msgid "Remove Incomplete Outputs" +msgstr "" + +#: build/serializers.py:706 +msgid "Delete any build outputs which have not been completed" +msgstr "" + +#: build/serializers.py:733 +msgid "Not permitted" +msgstr "" + +#: build/serializers.py:734 +msgid "Accept as consumed by this build order" +msgstr "" + +#: build/serializers.py:735 +msgid "Deallocate before completing this build order" +msgstr "" + +#: build/serializers.py:765 +msgid "Overallocated Stock" +msgstr "" + +#: build/serializers.py:767 +msgid "How do you want to handle extra stock items assigned to the build order" +msgstr "" + +#: build/serializers.py:777 +msgid "Some stock items have been overallocated" +msgstr "" + +#: build/serializers.py:782 +msgid "Accept Unallocated" +msgstr "" + +#: build/serializers.py:783 +msgid "Accept that stock items have not been fully allocated to this build order" +msgstr "" + +#: build/serializers.py:793 templates/js/translated/build.js:319 +msgid "Required stock has not been fully allocated" +msgstr "" + +#: build/serializers.py:798 order/serializers.py:346 order/serializers.py:1369 +msgid "Accept Incomplete" +msgstr "" + +#: build/serializers.py:799 +msgid "Accept that the required number of build outputs have not been completed" +msgstr "" + +#: build/serializers.py:809 templates/js/translated/build.js:323 +msgid "Required build quantity has not been completed" +msgstr "" + +#: build/serializers.py:818 +msgid "Build order has open child build orders" +msgstr "" + +#: build/serializers.py:821 +msgid "Build order must be in production state" +msgstr "" + +#: build/serializers.py:824 templates/js/translated/build.js:307 +msgid "Build order has incomplete outputs" +msgstr "" + +#: build/serializers.py:862 +msgid "Build Line" +msgstr "" + +#: build/serializers.py:872 +msgid "Build output" +msgstr "" + +#: build/serializers.py:880 +msgid "Build output must point to the same build" +msgstr "" + +#: build/serializers.py:916 +msgid "Build Line Item" +msgstr "" + +#: build/serializers.py:930 +msgid "bom_item.part must point to the same part as the build order" +msgstr "" + +#: build/serializers.py:945 stock/serializers.py:1301 +msgid "Item must be in stock" +msgstr "" + +#: build/serializers.py:993 order/serializers.py:1355 +#, python-brace-format +msgid "Available quantity ({q}) exceeded" +msgstr "" + +#: build/serializers.py:999 +msgid "Build output must be specified for allocation of tracked parts" +msgstr "" + +#: build/serializers.py:1006 +msgid "Build output cannot be specified for allocation of untracked parts" +msgstr "" + +#: build/serializers.py:1030 order/serializers.py:1622 +msgid "Allocation items must be provided" +msgstr "" + +#: build/serializers.py:1093 +msgid "Stock location where parts are to be sourced (leave blank to take from any location)" +msgstr "" + +#: build/serializers.py:1101 +msgid "Exclude Location" +msgstr "" + +#: build/serializers.py:1102 +msgid "Exclude stock items from this selected location" +msgstr "" + +#: build/serializers.py:1107 +msgid "Interchangeable Stock" +msgstr "" + +#: build/serializers.py:1108 +msgid "Stock items in multiple locations can be used interchangeably" +msgstr "" + +#: build/serializers.py:1113 +msgid "Substitute Stock" +msgstr "" + +#: build/serializers.py:1114 +msgid "Allow allocation of substitute parts" +msgstr "" + +#: build/serializers.py:1119 +msgid "Optional Items" +msgstr "" + +#: build/serializers.py:1120 +msgid "Allocate optional BOM items to build order" +msgstr "" + +#: build/serializers.py:1142 +msgid "Failed to start auto-allocation task" +msgstr "" + +#: build/serializers.py:1225 +msgid "Supplier Part Number" +msgstr "" + +#: build/serializers.py:1226 company/models.py:503 +msgid "Manufacturer Part Number" +msgstr "" + +#: build/serializers.py:1227 stock/admin.py:53 stock/admin.py:176 +#: stock/serializers.py:464 +msgid "Location Name" +msgstr "" + +#: build/serializers.py:1228 +msgid "Build Reference" +msgstr "" + +#: build/serializers.py:1229 +msgid "BOM Reference" +msgstr "" + +#: build/serializers.py:1230 company/models.py:849 +#: company/templates/company/supplier_part.html:160 order/serializers.py:691 +#: stock/admin.py:229 stock/models.py:822 stock/serializers.py:1586 +#: stock/templates/stock/item_base.html:236 +#: templates/js/translated/company.js:1646 +#: templates/js/translated/purchase_order.js:1169 +#: templates/js/translated/purchase_order.js:1332 +#: templates/js/translated/stock.js:1214 templates/js/translated/stock.js:1246 +#: templates/js/translated/stock.js:2510 +msgid "Packaging" +msgstr "" + +#: build/serializers.py:1233 part/admin.py:39 part/admin.py:398 +#: part/models.py:4102 part/stocktake.py:218 stock/admin.py:153 +msgid "Part ID" +msgstr "" + +#: build/serializers.py:1235 build/serializers.py:1324 part/admin.py:402 +#: part/models.py:4104 +msgid "Part IPN" +msgstr "" + +#: build/serializers.py:1236 build/serializers.py:1326 part/admin.py:45 +#: part/stocktake.py:220 +msgid "Part Description" +msgstr "" + +#: build/serializers.py:1239 +msgid "BOM Part ID" +msgstr "" + +#: build/serializers.py:1240 +msgid "BOM Part Name" +msgstr "" + +#: build/serializers.py:1243 +#: report/templates/report/inventree_return_order_report.html:25 +#: report/templates/report/inventree_test_report.html:88 stock/models.py:849 +#: stock/serializers.py:152 stock/templates/stock/item_base.html:307 +#: templates/js/translated/build.js:523 templates/js/translated/build.js:1543 +#: templates/js/translated/build.js:2530 +#: templates/js/translated/model_renderers.js:231 +#: templates/js/translated/return_order.js:539 +#: templates/js/translated/return_order.js:722 +#: templates/js/translated/sales_order.js:315 +#: templates/js/translated/sales_order.js:1647 +#: templates/js/translated/sales_order.js:1732 +#: templates/js/translated/stock.js:602 +msgid "Serial Number" +msgstr "" + +#: build/serializers.py:1256 stock/serializers.py:600 +#: templates/js/translated/build.js:1020 templates/js/translated/build.js:1167 +#: templates/js/translated/build.js:2519 +msgid "Allocated Quantity" +msgstr "" + +#: build/serializers.py:1257 stock/templates/stock/item_base.html:336 +msgid "Available Quantity" +msgstr "" + +#: build/serializers.py:1327 +msgid "Part Category ID" +msgstr "" + +#: build/serializers.py:1328 +msgid "Part Category Name" +msgstr "" + +#: build/serializers.py:1335 common/models.py:1515 part/admin.py:113 +#: part/models.py:1178 templates/js/translated/table_filters.js:150 +#: templates/js/translated/table_filters.js:230 +#: templates/js/translated/table_filters.js:783 +msgid "Trackable" +msgstr "" + +#: build/serializers.py:1336 +msgid "Inherited" +msgstr "" + +#: build/serializers.py:1337 part/models.py:4313 +#: part/templates/part/upload_bom.html:56 templates/js/translated/bom.js:1046 +#: templates/js/translated/build.js:2714 +msgid "Allow Variants" +msgstr "" + +#: build/serializers.py:1341 part/models.py:4111 part/models.py:4587 +#: stock/api.py:793 +msgid "BOM Item" +msgstr "" + +#: build/serializers.py:1350 build/templates/build/detail.html:236 +#: build/templates/build/sidebar.html:16 templates/js/translated/index.js:130 +msgid "Allocated Stock" +msgstr "" + +#: build/serializers.py:1355 order/serializers.py:1179 part/admin.py:132 +#: part/bom.py:186 part/serializers.py:918 part/serializers.py:1621 +#: part/templates/part/part_base.html:210 templates/js/translated/bom.js:1208 +#: templates/js/translated/build.js:2807 templates/js/translated/part.js:712 +#: templates/js/translated/part.js:2155 +#: templates/js/translated/table_filters.js:177 +msgid "On Order" +msgstr "" + +#: build/serializers.py:1360 order/serializers.py:1180 part/serializers.py:1623 +#: templates/js/translated/build.js:2811 +#: templates/js/translated/table_filters.js:367 +msgid "In Production" +msgstr "" + +#: build/serializers.py:1365 part/bom.py:185 part/serializers.py:1648 +#: part/templates/part/part_base.html:192 +#: templates/js/translated/sales_order.js:1929 +msgid "Available Stock" +msgstr "" + +#: build/serializers.py:1369 +msgid "Available Substitute Stock" +msgstr "" + +#: build/serializers.py:1370 +msgid "Available Variant Stock" +msgstr "" + +#: build/serializers.py:1371 +msgid "Total Available Stock" +msgstr "" + +#: build/serializers.py:1372 part/serializers.py:925 +msgid "External Stock" +msgstr "" + +#: build/status_codes.py:11 generic/states/tests.py:21 +#: generic/states/tests.py:131 order/status_codes.py:12 +#: order/status_codes.py:42 order/status_codes.py:74 order/status_codes.py:98 +#: templates/js/translated/table_filters.js:601 +msgid "Pending" +msgstr "" + +#: build/status_codes.py:12 +msgid "Production" +msgstr "" + +#: build/status_codes.py:13 order/status_codes.py:14 order/status_codes.py:49 +#: order/status_codes.py:79 +msgid "On Hold" +msgstr "" + +#: build/status_codes.py:14 order/status_codes.py:16 order/status_codes.py:51 +#: order/status_codes.py:82 +msgid "Cancelled" +msgstr "" + +#: build/status_codes.py:15 generic/states/tests.py:23 importer/models.py:510 +#: importer/status_codes.py:27 order/status_codes.py:15 +#: order/status_codes.py:50 order/status_codes.py:81 +#: order/templates/order/order_base.html:163 +#: order/templates/order/sales_order_base.html:168 report/models.py:451 +msgid "Complete" +msgstr "" + +#: build/tasks.py:180 +msgid "Stock required for build order" +msgstr "" + +#: build/tasks.py:233 +msgid "Overdue Build Order" +msgstr "" + +#: build/tasks.py:238 +#, python-brace-format +msgid "Build order {bo} is now overdue" +msgstr "" + +#: build/templates/build/build_base.html:18 +msgid "Part thumbnail" +msgstr "" + +#: build/templates/build/build_base.html:38 +#: company/templates/company/supplier_part.html:35 +#: order/templates/order/order_base.html:29 +#: order/templates/order/return_order_base.html:38 +#: order/templates/order/sales_order_base.html:38 +#: part/templates/part/part_base.html:41 +#: stock/templates/stock/item_base.html:40 +#: stock/templates/stock/location.html:52 +#: templates/js/translated/filters.js:338 +msgid "Barcode actions" +msgstr "" + +#: build/templates/build/build_base.html:42 +#: company/templates/company/supplier_part.html:39 +#: order/templates/order/order_base.html:33 +#: order/templates/order/return_order_base.html:42 +#: order/templates/order/sales_order_base.html:42 +#: part/templates/part/part_base.html:44 +#: stock/templates/stock/item_base.html:44 +#: stock/templates/stock/location.html:54 templates/qr_button.html:1 +msgid "Show QR Code" +msgstr "" + +#: build/templates/build/build_base.html:45 +#: company/templates/company/supplier_part.html:41 +#: order/templates/order/order_base.html:36 +#: order/templates/order/return_order_base.html:45 +#: order/templates/order/sales_order_base.html:45 +#: part/templates/part/part_base.html:47 +#: stock/templates/stock/item_base.html:47 +#: stock/templates/stock/location.html:56 +#: templates/js/translated/barcode.js:527 +#: templates/js/translated/barcode.js:532 +msgid "Unlink Barcode" +msgstr "" + +#: build/templates/build/build_base.html:47 +#: company/templates/company/supplier_part.html:43 +#: order/templates/order/order_base.html:38 +#: order/templates/order/return_order_base.html:47 +#: order/templates/order/sales_order_base.html:47 +#: part/templates/part/part_base.html:49 +#: stock/templates/stock/item_base.html:49 +#: stock/templates/stock/location.html:58 +msgid "Link Barcode" +msgstr "" + +#: build/templates/build/build_base.html:56 +#: order/templates/order/order_base.html:46 +#: order/templates/order/return_order_base.html:55 +#: order/templates/order/sales_order_base.html:55 +msgid "Print actions" +msgstr "" + +#: build/templates/build/build_base.html:60 +msgid "Print build order report" +msgstr "" + +#: build/templates/build/build_base.html:67 +msgid "Build actions" +msgstr "" + +#: build/templates/build/build_base.html:71 +msgid "Edit Build" +msgstr "" + +#: build/templates/build/build_base.html:73 +msgid "Duplicate Build" +msgstr "" + +#: build/templates/build/build_base.html:76 +msgid "Hold Build" +msgstr "" + +#: build/templates/build/build_base.html:79 +msgid "Cancel Build" +msgstr "" + +#: build/templates/build/build_base.html:82 +msgid "Delete Build" +msgstr "" + +#: build/templates/build/build_base.html:87 +#: build/templates/build/build_base.html:88 +msgid "Issue Build" +msgstr "" + +#: build/templates/build/build_base.html:91 +#: build/templates/build/build_base.html:92 +msgid "Complete Build" +msgstr "" + +#: build/templates/build/build_base.html:115 +msgid "Build Description" +msgstr "" + +#: build/templates/build/build_base.html:125 +msgid "No build outputs have been created for this build order" +msgstr "" + +#: build/templates/build/build_base.html:132 +msgid "Build Order is ready to mark as completed" +msgstr "" + +#: build/templates/build/build_base.html:137 +msgid "Build Order cannot be completed as outstanding outputs remain" +msgstr "" + +#: build/templates/build/build_base.html:142 +msgid "Required build quantity has not yet been completed" +msgstr "" + +#: build/templates/build/build_base.html:147 +msgid "Stock has not been fully allocated to this Build Order" +msgstr "" + +#: build/templates/build/build_base.html:168 +#: build/templates/build/detail.html:138 order/models.py:309 +#: order/models.py:1384 order/serializers.py:177 +#: order/templates/order/order_base.html:191 +#: order/templates/order/return_order_base.html:167 +#: order/templates/order/sales_order_base.html:199 +#: report/templates/report/inventree_build_order_report.html:125 +#: templates/js/translated/build.js:2414 templates/js/translated/part.js:1837 +#: templates/js/translated/purchase_order.js:1809 +#: templates/js/translated/purchase_order.js:2217 +#: templates/js/translated/return_order.js:346 +#: templates/js/translated/return_order.js:749 +#: templates/js/translated/sales_order.js:871 +#: templates/js/translated/sales_order.js:1903 +msgid "Target Date" +msgstr "" + +#: build/templates/build/build_base.html:173 +#, python-format +msgid "This build was due on %(target)s" +msgstr "" + +#: build/templates/build/build_base.html:173 +#: build/templates/build/build_base.html:230 +#: order/templates/order/order_base.html:127 +#: order/templates/order/return_order_base.html:120 +#: order/templates/order/sales_order_base.html:129 +#: templates/js/translated/table_filters.js:97 +#: templates/js/translated/table_filters.js:545 +#: templates/js/translated/table_filters.js:629 +#: templates/js/translated/table_filters.js:670 +msgid "Overdue" +msgstr "" + +#: build/templates/build/build_base.html:185 +#: build/templates/build/detail.html:67 build/templates/build/sidebar.html:13 +msgid "Completed Outputs" +msgstr "" + +#: build/templates/build/build_base.html:198 +#: build/templates/build/detail.html:101 order/api.py:1393 order/models.py:893 +#: order/models.py:1643 order/models.py:1758 order/models.py:1917 +#: order/templates/order/sales_order_base.html:9 +#: order/templates/order/sales_order_base.html:28 +#: report/templates/report/inventree_build_order_report.html:135 +#: report/templates/report/inventree_sales_order_report.html:14 +#: stock/templates/stock/item_base.html:365 +#: templates/email/overdue_sales_order.html:15 +#: templates/js/translated/pricing.js:929 +#: templates/js/translated/sales_order.js:805 +#: templates/js/translated/sales_order.js:1028 +#: templates/js/translated/stock.js:3009 +msgid "Sales Order" +msgstr "" + +#: build/templates/build/build_base.html:219 +#: build/templates/build/detail.html:94 templates/js/translated/build.js:2331 +msgid "Priority" +msgstr "" + +#: build/templates/build/build_base.html:267 +msgid "Issue Build Order" +msgstr "" + +#: build/templates/build/build_base.html:271 +msgid "Issue this Build Order?" +msgstr "" + +#: build/templates/build/build_base.html:302 +msgid "Delete Build Order" +msgstr "" + +#: build/templates/build/build_base.html:312 +msgid "Build Order QR Code" +msgstr "" + +#: build/templates/build/build_base.html:324 +msgid "Link Barcode to Build Order" +msgstr "" + +#: build/templates/build/detail.html:15 +msgid "Build Details" +msgstr "" + +#: build/templates/build/detail.html:38 +msgid "Stock Source" +msgstr "" + +#: build/templates/build/detail.html:43 +msgid "Stock can be taken from any available location." +msgstr "" + +#: build/templates/build/detail.html:49 order/models.py:1525 +#: templates/js/translated/purchase_order.js:2259 +msgid "Destination" +msgstr "" + +#: build/templates/build/detail.html:56 +msgid "Destination location not specified" +msgstr "" + +#: build/templates/build/detail.html:73 +msgid "Allocated Parts" +msgstr "" + +#: build/templates/build/detail.html:80 stock/admin.py:163 +#: stock/templates/stock/item_base.html:158 +#: templates/js/translated/build.js:1556 +#: templates/js/translated/model_renderers.js:242 +#: templates/js/translated/purchase_order.js:1326 +#: templates/js/translated/stock.js:1139 templates/js/translated/stock.js:1240 +#: templates/js/translated/stock.js:2276 templates/js/translated/stock.js:3212 +#: templates/js/translated/table_filters.js:320 +#: templates/js/translated/table_filters.js:411 +msgid "Batch" +msgstr "" + +#: build/templates/build/detail.html:133 +#: order/templates/order/order_base.html:178 +#: order/templates/order/return_order_base.html:154 +#: order/templates/order/sales_order_base.html:193 +#: templates/js/translated/build.js:2374 +msgid "Created" +msgstr "" + +#: build/templates/build/detail.html:144 +msgid "No target date set" +msgstr "" + +#: build/templates/build/detail.html:149 +#: order/templates/order/sales_order_base.html:209 +#: templates/js/translated/table_filters.js:692 +msgid "Completed" +msgstr "" + +#: build/templates/build/detail.html:153 +msgid "Build not complete" +msgstr "" + +#: build/templates/build/detail.html:164 build/templates/build/sidebar.html:21 +msgid "Child Build Orders" +msgstr "" + +#: build/templates/build/detail.html:177 +msgid "Build Order Line Items" +msgstr "" + +#: build/templates/build/detail.html:181 +msgid "Deallocate stock" +msgstr "" + +#: build/templates/build/detail.html:182 +msgid "Deallocate Stock" +msgstr "" + +#: build/templates/build/detail.html:184 +msgid "Automatically allocate stock to build" +msgstr "" + +#: build/templates/build/detail.html:185 +msgid "Auto Allocate" +msgstr "" + +#: build/templates/build/detail.html:187 +msgid "Manually allocate stock to build" +msgstr "" + +#: build/templates/build/detail.html:188 +msgid "Allocate Stock" +msgstr "" + +#: build/templates/build/detail.html:191 +msgid "Order required parts" +msgstr "" + +#: build/templates/build/detail.html:192 +#: templates/js/translated/purchase_order.js:795 +msgid "Order Parts" +msgstr "" + +#: build/templates/build/detail.html:205 +msgid "Available stock has been filtered based on specified source location for this build order" +msgstr "" + +#: build/templates/build/detail.html:215 +msgid "Incomplete Build Outputs" +msgstr "" + +#: build/templates/build/detail.html:219 +msgid "Create new build output" +msgstr "" + +#: build/templates/build/detail.html:220 +msgid "New Build Output" +msgstr "" + +#: build/templates/build/detail.html:249 build/templates/build/sidebar.html:19 +msgid "Consumed Stock" +msgstr "" + +#: build/templates/build/detail.html:261 +msgid "Completed Build Outputs" +msgstr "" + +#: build/templates/build/detail.html:273 +msgid "Build test statistics" +msgstr "" + +#: build/templates/build/detail.html:288 build/templates/build/sidebar.html:27 +#: company/templates/company/detail.html:229 +#: company/templates/company/manufacturer_part.html:141 +#: company/templates/company/manufacturer_part_sidebar.html:9 +#: company/templates/company/sidebar.html:39 +#: order/templates/order/po_sidebar.html:9 +#: order/templates/order/purchase_order_detail.html:84 +#: order/templates/order/return_order_detail.html:70 +#: order/templates/order/return_order_sidebar.html:7 +#: order/templates/order/sales_order_detail.html:124 +#: order/templates/order/so_sidebar.html:15 part/templates/part/detail.html:233 +#: part/templates/part/part_sidebar.html:63 stock/templates/stock/item.html:110 +#: stock/templates/stock/stock_sidebar.html:23 +msgid "Attachments" +msgstr "" + +#: build/templates/build/detail.html:303 +msgid "Build Notes" +msgstr "" + +#: build/templates/build/detail.html:458 +msgid "Allocation Complete" +msgstr "" + +#: build/templates/build/detail.html:459 +msgid "All lines have been fully allocated" +msgstr "" + +#: build/templates/build/index.html:18 part/templates/part/detail.html:335 +msgid "New Build Order" +msgstr "" + +#: build/templates/build/sidebar.html:5 +msgid "Build Order Details" +msgstr "" + +#: build/templates/build/sidebar.html:8 order/serializers.py:83 +#: order/templates/order/po_sidebar.html:5 +#: order/templates/order/return_order_detail.html:18 +#: order/templates/order/so_sidebar.html:5 +#: report/templates/report/inventree_purchase_order_report.html:22 +#: report/templates/report/inventree_return_order_report.html:19 +#: report/templates/report/inventree_sales_order_report.html:22 +msgid "Line Items" +msgstr "" + +#: build/templates/build/sidebar.html:10 +msgid "Incomplete Outputs" +msgstr "" + +#: build/templates/build/sidebar.html:24 +#: part/templates/part/part_sidebar.html:56 +msgid "Test Statistics" +msgstr "" + +#: common/api.py:725 +msgid "Is Link" +msgstr "" + +#: common/api.py:733 +msgid "Is File" +msgstr "" + +#: common/api.py:776 +msgid "User does not have permission to delete these attachments" +msgstr "" + +#: common/api.py:793 +msgid "User does not have permission to delete this attachment" +msgstr "" + +#: common/currency.py:132 +msgid "Invalid currency code" +msgstr "" + +#: common/currency.py:134 +msgid "Duplicate currency code" +msgstr "" + +#: common/currency.py:139 +msgid "No valid currency codes provided" +msgstr "" + +#: common/currency.py:156 +msgid "No plugin" +msgstr "" + +#: common/files.py:63 +#, python-brace-format +msgid "Unsupported file format: {fmt}" +msgstr "" + +#: common/files.py:65 +msgid "Error reading file (invalid encoding)" +msgstr "" + +#: common/files.py:70 +msgid "Error reading file (invalid format)" +msgstr "" + +#: common/files.py:72 +msgid "Error reading file (incorrect dimension)" +msgstr "" + +#: common/files.py:74 +msgid "Error reading file (data could be corrupted)" +msgstr "" + +#: common/forms.py:12 +msgid "File" +msgstr "" + +#: common/forms.py:12 +msgid "Select file to upload" +msgstr "" + +#: common/forms.py:25 +msgid "{name.title()} File" +msgstr "" + +#: common/forms.py:26 +#, python-brace-format +msgid "Select {name} file to upload" +msgstr "" + +#: common/models.py:88 +msgid "Updated" +msgstr "" + +#: common/models.py:89 +msgid "Timestamp of last update" +msgstr "" + +#: common/models.py:122 +msgid "Site URL is locked by configuration" +msgstr "" + +#: common/models.py:152 +msgid "Unique project code" +msgstr "" + +#: common/models.py:159 +msgid "Project description" +msgstr "" + +#: common/models.py:168 +msgid "User or group responsible for this project" +msgstr "" + +#: common/models.py:785 +msgid "Settings key (must be unique - case insensitive)" +msgstr "" + +#: common/models.py:789 +msgid "Settings value" +msgstr "" + +#: common/models.py:841 +msgid "Chosen value is not a valid option" +msgstr "" + +#: common/models.py:857 +msgid "Value must be a boolean value" +msgstr "" + +#: common/models.py:865 +msgid "Value must be an integer value" +msgstr "" + +#: common/models.py:902 +msgid "Key string must be unique" +msgstr "" + +#: common/models.py:1134 +msgid "No group" +msgstr "" + +#: common/models.py:1233 +msgid "Restart required" +msgstr "" + +#: common/models.py:1235 +msgid "A setting has been changed which requires a server restart" +msgstr "" + +#: common/models.py:1242 +msgid "Pending migrations" +msgstr "" + +#: common/models.py:1243 +msgid "Number of pending database migrations" +msgstr "" + +#: common/models.py:1248 +msgid "Server Instance Name" +msgstr "" + +#: common/models.py:1250 +msgid "String descriptor for the server instance" +msgstr "" + +#: common/models.py:1254 +msgid "Use instance name" +msgstr "" + +#: common/models.py:1255 +msgid "Use the instance name in the title-bar" +msgstr "" + +#: common/models.py:1260 +msgid "Restrict showing `about`" +msgstr "" + +#: common/models.py:1261 +msgid "Show the `about` modal only to superusers" +msgstr "" + +#: common/models.py:1266 company/models.py:108 company/models.py:109 +msgid "Company name" +msgstr "" + +#: common/models.py:1267 +msgid "Internal company name" +msgstr "" + +#: common/models.py:1271 +msgid "Base URL" +msgstr "" + +#: common/models.py:1272 +msgid "Base URL for server instance" +msgstr "" + +#: common/models.py:1278 +msgid "Default Currency" +msgstr "" + +#: common/models.py:1279 +msgid "Select base currency for pricing calculations" +msgstr "" + +#: common/models.py:1285 +msgid "Supported Currencies" +msgstr "" + +#: common/models.py:1286 +msgid "List of supported currency codes" +msgstr "" + +#: common/models.py:1292 +msgid "Currency Update Interval" +msgstr "" + +#: common/models.py:1294 +msgid "How often to update exchange rates (set to zero to disable)" +msgstr "" + +#: common/models.py:1297 common/models.py:1353 common/models.py:1366 +#: common/models.py:1374 common/models.py:1383 common/models.py:1392 +#: common/models.py:1629 common/models.py:1651 common/models.py:1752 +#: common/models.py:2141 +msgid "days" +msgstr "" + +#: common/models.py:1301 +msgid "Currency Update Plugin" +msgstr "" + +#: common/models.py:1302 +msgid "Currency update plugin to use" +msgstr "" + +#: common/models.py:1307 +msgid "Download from URL" +msgstr "" + +#: common/models.py:1309 +msgid "Allow download of remote images and files from external URL" +msgstr "" + +#: common/models.py:1315 +msgid "Download Size Limit" +msgstr "" + +#: common/models.py:1316 +msgid "Maximum allowable download size for remote image" +msgstr "" + +#: common/models.py:1322 +msgid "User-agent used to download from URL" +msgstr "" + +#: common/models.py:1324 +msgid "Allow to override the user-agent used to download images and files from external URL (leave blank for the default)" +msgstr "" + +#: common/models.py:1329 +msgid "Strict URL Validation" +msgstr "" + +#: common/models.py:1330 +msgid "Require schema specification when validating URLs" +msgstr "" + +#: common/models.py:1335 +msgid "Require confirm" +msgstr "" + +#: common/models.py:1336 +msgid "Require explicit user confirmation for certain action." +msgstr "" + +#: common/models.py:1341 +msgid "Tree Depth" +msgstr "" + +#: common/models.py:1343 +msgid "Default tree depth for treeview. Deeper levels can be lazy loaded as they are needed." +msgstr "" + +#: common/models.py:1349 +msgid "Update Check Interval" +msgstr "" + +#: common/models.py:1350 +msgid "How often to check for updates (set to zero to disable)" +msgstr "" + +#: common/models.py:1356 +msgid "Automatic Backup" +msgstr "" + +#: common/models.py:1357 +msgid "Enable automatic backup of database and media files" +msgstr "" + +#: common/models.py:1362 +msgid "Auto Backup Interval" +msgstr "" + +#: common/models.py:1363 +msgid "Specify number of days between automated backup events" +msgstr "" + +#: common/models.py:1369 +msgid "Task Deletion Interval" +msgstr "" + +#: common/models.py:1371 +msgid "Background task results will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1378 +msgid "Error Log Deletion Interval" +msgstr "" + +#: common/models.py:1380 +msgid "Error logs will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1387 +msgid "Notification Deletion Interval" +msgstr "" + +#: common/models.py:1389 +msgid "User notifications will be deleted after specified number of days" +msgstr "" + +#: common/models.py:1396 templates/InvenTree/settings/sidebar.html:31 +msgid "Barcode Support" +msgstr "" + +#: common/models.py:1397 +msgid "Enable barcode scanner support in the web interface" +msgstr "" + +#: common/models.py:1402 +msgid "Barcode Input Delay" +msgstr "" + +#: common/models.py:1403 +msgid "Barcode input processing delay time" +msgstr "" + +#: common/models.py:1409 +msgid "Barcode Webcam Support" +msgstr "" + +#: common/models.py:1410 +msgid "Allow barcode scanning via webcam in browser" +msgstr "" + +#: common/models.py:1415 +msgid "Barcode Show Data" +msgstr "" + +#: common/models.py:1416 +msgid "Display barcode data in browser as text" +msgstr "" + +#: common/models.py:1421 +msgid "Barcode Generation Plugin" +msgstr "" + +#: common/models.py:1422 +msgid "Plugin to use for internal barcode data generation" +msgstr "" + +#: common/models.py:1427 +msgid "Part Revisions" +msgstr "" + +#: common/models.py:1428 +msgid "Enable revision field for Part" +msgstr "" + +#: common/models.py:1433 +msgid "Assembly Revision Only" +msgstr "" + +#: common/models.py:1434 +msgid "Only allow revisions for assembly parts" +msgstr "" + +#: common/models.py:1439 +msgid "Allow Deletion from Assembly" +msgstr "" + +#: common/models.py:1440 +msgid "Allow deletion of parts which are used in an assembly" +msgstr "" + +#: common/models.py:1445 +msgid "IPN Regex" +msgstr "" + +#: common/models.py:1446 +msgid "Regular expression pattern for matching Part IPN" +msgstr "" + +#: common/models.py:1449 +msgid "Allow Duplicate IPN" +msgstr "" + +#: common/models.py:1450 +msgid "Allow multiple parts to share the same IPN" +msgstr "" + +#: common/models.py:1455 +msgid "Allow Editing IPN" +msgstr "" + +#: common/models.py:1456 +msgid "Allow changing the IPN value while editing a part" +msgstr "" + +#: common/models.py:1461 +msgid "Copy Part BOM Data" +msgstr "" + +#: common/models.py:1462 +msgid "Copy BOM data by default when duplicating a part" +msgstr "" + +#: common/models.py:1467 +msgid "Copy Part Parameter Data" +msgstr "" + +#: common/models.py:1468 +msgid "Copy parameter data by default when duplicating a part" +msgstr "" + +#: common/models.py:1473 +msgid "Copy Part Test Data" +msgstr "" + +#: common/models.py:1474 +msgid "Copy test data by default when duplicating a part" +msgstr "" + +#: common/models.py:1479 +msgid "Copy Category Parameter Templates" +msgstr "" + +#: common/models.py:1480 +msgid "Copy category parameter templates when creating a part" +msgstr "" + +#: common/models.py:1485 part/admin.py:108 part/models.py:3946 +#: report/models.py:301 report/models.py:368 report/serializers.py:91 +#: report/serializers.py:132 stock/serializers.py:233 +#: templates/js/translated/table_filters.js:138 +#: templates/js/translated/table_filters.js:775 +msgid "Template" +msgstr "" + +#: common/models.py:1486 +msgid "Parts are templates by default" +msgstr "" + +#: common/models.py:1492 +msgid "Parts can be assembled from other components by default" +msgstr "" + +#: common/models.py:1497 part/admin.py:95 part/models.py:1172 +#: part/serializers.py:1615 templates/js/translated/table_filters.js:737 +msgid "Component" +msgstr "" + +#: common/models.py:1498 +msgid "Parts can be used as sub-components by default" +msgstr "" + +#: common/models.py:1503 part/admin.py:100 part/models.py:1190 +msgid "Purchaseable" +msgstr "" + +#: common/models.py:1504 +msgid "Parts are purchaseable by default" +msgstr "" + +#: common/models.py:1509 part/admin.py:104 part/models.py:1196 +#: templates/js/translated/table_filters.js:763 +msgid "Salable" +msgstr "" + +#: common/models.py:1510 +msgid "Parts are salable by default" +msgstr "" + +#: common/models.py:1516 +msgid "Parts are trackable by default" +msgstr "" + +#: common/models.py:1521 part/admin.py:117 part/models.py:1212 +#: part/templates/part/part_base.html:154 +#: templates/js/translated/table_filters.js:142 +#: templates/js/translated/table_filters.js:787 +msgid "Virtual" +msgstr "" + +#: common/models.py:1522 +msgid "Parts are virtual by default" +msgstr "" + +#: common/models.py:1527 +msgid "Show Import in Views" +msgstr "" + +#: common/models.py:1528 +msgid "Display the import wizard in some part views" +msgstr "" + +#: common/models.py:1533 +msgid "Show related parts" +msgstr "" + +#: common/models.py:1534 +msgid "Display related parts for a part" +msgstr "" + +#: common/models.py:1539 +msgid "Initial Stock Data" +msgstr "" + +#: common/models.py:1540 +msgid "Allow creation of initial stock when adding a new part" +msgstr "" + +#: common/models.py:1545 templates/js/translated/part.js:108 +msgid "Initial Supplier Data" +msgstr "" + +#: common/models.py:1547 +msgid "Allow creation of initial supplier data when adding a new part" +msgstr "" + +#: common/models.py:1553 +msgid "Part Name Display Format" +msgstr "" + +#: common/models.py:1554 +msgid "Format to display the part name" +msgstr "" + +#: common/models.py:1560 +msgid "Part Category Default Icon" +msgstr "" + +#: common/models.py:1561 +msgid "Part category default icon (empty means no icon)" +msgstr "" + +#: common/models.py:1566 +msgid "Enforce Parameter Units" +msgstr "" + +#: common/models.py:1568 +msgid "If units are provided, parameter values must match the specified units" +msgstr "" + +#: common/models.py:1574 +msgid "Minimum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1576 +msgid "Minimum number of decimal places to display when rendering pricing data" +msgstr "" + +#: common/models.py:1587 +msgid "Maximum Pricing Decimal Places" +msgstr "" + +#: common/models.py:1589 +msgid "Maximum number of decimal places to display when rendering pricing data" +msgstr "" + +#: common/models.py:1600 +msgid "Use Supplier Pricing" +msgstr "" + +#: common/models.py:1602 +msgid "Include supplier price breaks in overall pricing calculations" +msgstr "" + +#: common/models.py:1608 +msgid "Purchase History Override" +msgstr "" + +#: common/models.py:1610 +msgid "Historical purchase order pricing overrides supplier price breaks" +msgstr "" + +#: common/models.py:1616 +msgid "Use Stock Item Pricing" +msgstr "" + +#: common/models.py:1618 +msgid "Use pricing from manually entered stock data for pricing calculations" +msgstr "" + +#: common/models.py:1624 +msgid "Stock Item Pricing Age" +msgstr "" + +#: common/models.py:1626 +msgid "Exclude stock items older than this number of days from pricing calculations" +msgstr "" + +#: common/models.py:1633 +msgid "Use Variant Pricing" +msgstr "" + +#: common/models.py:1634 +msgid "Include variant pricing in overall pricing calculations" +msgstr "" + +#: common/models.py:1639 +msgid "Active Variants Only" +msgstr "" + +#: common/models.py:1641 +msgid "Only use active variant parts for calculating variant pricing" +msgstr "" + +#: common/models.py:1647 +msgid "Pricing Rebuild Interval" +msgstr "" + +#: common/models.py:1649 +msgid "Number of days before part pricing is automatically updated" +msgstr "" + +#: common/models.py:1656 +msgid "Internal Prices" +msgstr "" + +#: common/models.py:1657 +msgid "Enable internal prices for parts" +msgstr "" + +#: common/models.py:1662 +msgid "Internal Price Override" +msgstr "" + +#: common/models.py:1664 +msgid "If available, internal prices override price range calculations" +msgstr "" + +#: common/models.py:1670 +msgid "Enable label printing" +msgstr "" + +#: common/models.py:1671 +msgid "Enable label printing from the web interface" +msgstr "" + +#: common/models.py:1676 +msgid "Label Image DPI" +msgstr "" + +#: common/models.py:1678 +msgid "DPI resolution when generating image files to supply to label printing plugins" +msgstr "" + +#: common/models.py:1684 +msgid "Enable Reports" +msgstr "" + +#: common/models.py:1685 +msgid "Enable generation of reports" +msgstr "" + +#: common/models.py:1690 templates/stats.html:25 +msgid "Debug Mode" +msgstr "" + +#: common/models.py:1691 +msgid "Generate reports in debug mode (HTML output)" +msgstr "" + +#: common/models.py:1696 +msgid "Log Report Errors" +msgstr "" + +#: common/models.py:1697 +msgid "Log errors which occur when generating reports" +msgstr "" + +#: common/models.py:1702 plugin/builtin/labels/label_sheet.py:28 +#: report/models.py:309 +msgid "Page Size" +msgstr "" + +#: common/models.py:1703 +msgid "Default page size for PDF reports" +msgstr "" + +#: common/models.py:1708 +msgid "Globally Unique Serials" +msgstr "" + +#: common/models.py:1709 +msgid "Serial numbers for stock items must be globally unique" +msgstr "" + +#: common/models.py:1714 +msgid "Autofill Serial Numbers" +msgstr "" + +#: common/models.py:1715 +msgid "Autofill serial numbers in forms" +msgstr "" + +#: common/models.py:1720 +msgid "Delete Depleted Stock" +msgstr "" + +#: common/models.py:1722 +msgid "Determines default behavior when a stock item is depleted" +msgstr "" + +#: common/models.py:1728 +msgid "Batch Code Template" +msgstr "" + +#: common/models.py:1730 +msgid "Template for generating default batch codes for stock items" +msgstr "" + +#: common/models.py:1735 +msgid "Stock Expiry" +msgstr "" + +#: common/models.py:1736 +msgid "Enable stock expiry functionality" +msgstr "" + +#: common/models.py:1741 +msgid "Sell Expired Stock" +msgstr "" + +#: common/models.py:1742 +msgid "Allow sale of expired stock" +msgstr "" + +#: common/models.py:1747 +msgid "Stock Stale Time" +msgstr "" + +#: common/models.py:1749 +msgid "Number of days stock items are considered stale before expiring" +msgstr "" + +#: common/models.py:1756 +msgid "Build Expired Stock" +msgstr "" + +#: common/models.py:1757 +msgid "Allow building with expired stock" +msgstr "" + +#: common/models.py:1762 +msgid "Stock Ownership Control" +msgstr "" + +#: common/models.py:1763 +msgid "Enable ownership control over stock locations and items" +msgstr "" + +#: common/models.py:1768 +msgid "Stock Location Default Icon" +msgstr "" + +#: common/models.py:1769 +msgid "Stock location default icon (empty means no icon)" +msgstr "" + +#: common/models.py:1774 +msgid "Show Installed Stock Items" +msgstr "" + +#: common/models.py:1775 +msgid "Display installed stock items in stock tables" +msgstr "" + +#: common/models.py:1780 +msgid "Check BOM when installing items" +msgstr "" + +#: common/models.py:1782 +msgid "Installed stock items must exist in the BOM for the parent part" +msgstr "" + +#: common/models.py:1788 +msgid "Allow Out of Stock Transfer" +msgstr "" + +#: common/models.py:1790 +msgid "Allow stock items which are not in stock to be transferred between stock locations" +msgstr "" + +#: common/models.py:1796 +msgid "Build Order Reference Pattern" +msgstr "" + +#: common/models.py:1798 +msgid "Required pattern for generating Build Order reference field" +msgstr "" + +#: common/models.py:1804 common/models.py:1860 common/models.py:1882 +#: common/models.py:1918 +msgid "Require Responsible Owner" +msgstr "" + +#: common/models.py:1805 common/models.py:1861 common/models.py:1883 +#: common/models.py:1919 +msgid "A responsible owner must be assigned to each order" +msgstr "" + +#: common/models.py:1810 +msgid "Require Active Part" +msgstr "" + +#: common/models.py:1811 +msgid "Prevent build order creation for inactive parts" +msgstr "" + +#: common/models.py:1816 +msgid "Require Locked Part" +msgstr "" + +#: common/models.py:1817 +msgid "Prevent build order creation for unlocked parts" +msgstr "" + +#: common/models.py:1822 +msgid "Require Valid BOM" +msgstr "" + +#: common/models.py:1824 +msgid "Prevent build order creation unless BOM has been validated" +msgstr "" + +#: common/models.py:1830 +msgid "Require Closed Child Orders" +msgstr "" + +#: common/models.py:1832 +msgid "Prevent build order completion until all child orders are closed" +msgstr "" + +#: common/models.py:1838 +msgid "Block Until Tests Pass" +msgstr "" + +#: common/models.py:1840 +msgid "Prevent build outputs from being completed until all required tests pass" +msgstr "" + +#: common/models.py:1846 +msgid "Enable Return Orders" +msgstr "" + +#: common/models.py:1847 +msgid "Enable return order functionality in the user interface" +msgstr "" + +#: common/models.py:1852 +msgid "Return Order Reference Pattern" +msgstr "" + +#: common/models.py:1854 +msgid "Required pattern for generating Return Order reference field" +msgstr "" + +#: common/models.py:1866 +msgid "Edit Completed Return Orders" +msgstr "" + +#: common/models.py:1868 +msgid "Allow editing of return orders after they have been completed" +msgstr "" + +#: common/models.py:1874 +msgid "Sales Order Reference Pattern" +msgstr "" + +#: common/models.py:1876 +msgid "Required pattern for generating Sales Order reference field" +msgstr "" + +#: common/models.py:1888 +msgid "Sales Order Default Shipment" +msgstr "" + +#: common/models.py:1889 +msgid "Enable creation of default shipment with sales orders" +msgstr "" + +#: common/models.py:1894 +msgid "Edit Completed Sales Orders" +msgstr "" + +#: common/models.py:1896 +msgid "Allow editing of sales orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1902 +msgid "Mark Shipped Orders as Complete" +msgstr "" + +#: common/models.py:1904 +msgid "Sales orders marked as shipped will automatically be completed, bypassing the \"shipped\" status" +msgstr "" + +#: common/models.py:1910 +msgid "Purchase Order Reference Pattern" +msgstr "" + +#: common/models.py:1912 +msgid "Required pattern for generating Purchase Order reference field" +msgstr "" + +#: common/models.py:1924 +msgid "Edit Completed Purchase Orders" +msgstr "" + +#: common/models.py:1926 +msgid "Allow editing of purchase orders after they have been shipped or completed" +msgstr "" + +#: common/models.py:1932 +msgid "Auto Complete Purchase Orders" +msgstr "" + +#: common/models.py:1934 +msgid "Automatically mark purchase orders as complete when all line items are received" +msgstr "" + +#: common/models.py:1941 +msgid "Enable password forgot" +msgstr "" + +#: common/models.py:1942 +msgid "Enable password forgot function on the login pages" +msgstr "" + +#: common/models.py:1947 +msgid "Enable registration" +msgstr "" + +#: common/models.py:1948 +msgid "Enable self-registration for users on the login pages" +msgstr "" + +#: common/models.py:1953 +msgid "Enable SSO" +msgstr "" + +#: common/models.py:1954 +msgid "Enable SSO on the login pages" +msgstr "" + +#: common/models.py:1959 +msgid "Enable SSO registration" +msgstr "" + +#: common/models.py:1961 +msgid "Enable self-registration via SSO for users on the login pages" +msgstr "" + +#: common/models.py:1967 +msgid "Enable SSO group sync" +msgstr "" + +#: common/models.py:1969 +msgid "Enable synchronizing InvenTree groups with groups provided by the IdP" +msgstr "" + +#: common/models.py:1975 +msgid "SSO group key" +msgstr "" + +#: common/models.py:1977 +msgid "The name of the groups claim attribute provided by the IdP" +msgstr "" + +#: common/models.py:1983 +msgid "SSO group map" +msgstr "" + +#: common/models.py:1985 +msgid "A mapping from SSO groups to local InvenTree groups. If the local group does not exist, it will be created." +msgstr "" + +#: common/models.py:1991 +msgid "Remove groups outside of SSO" +msgstr "" + +#: common/models.py:1993 +msgid "Whether groups assigned to the user should be removed if they are not backend by the IdP. Disabling this setting might cause security issues" +msgstr "" + +#: common/models.py:1999 +msgid "Email required" +msgstr "" + +#: common/models.py:2000 +msgid "Require user to supply mail on signup" +msgstr "" + +#: common/models.py:2005 +msgid "Auto-fill SSO users" +msgstr "" + +#: common/models.py:2007 +msgid "Automatically fill out user-details from SSO account-data" +msgstr "" + +#: common/models.py:2013 +msgid "Mail twice" +msgstr "" + +#: common/models.py:2014 +msgid "On signup ask users twice for their mail" +msgstr "" + +#: common/models.py:2019 +msgid "Password twice" +msgstr "" + +#: common/models.py:2020 +msgid "On signup ask users twice for their password" +msgstr "" + +#: common/models.py:2025 +msgid "Allowed domains" +msgstr "" + +#: common/models.py:2027 +msgid "Restrict signup to certain domains (comma-separated, starting with @)" +msgstr "" + +#: common/models.py:2033 +msgid "Group on signup" +msgstr "" + +#: common/models.py:2035 +msgid "Group to which new users are assigned on registration. If SSO group sync is enabled, this group is only set if no group can be assigned from the IdP." +msgstr "" + +#: common/models.py:2041 +msgid "Enforce MFA" +msgstr "" + +#: common/models.py:2042 +msgid "Users must use multifactor security." +msgstr "" + +#: common/models.py:2047 +msgid "Check plugins on startup" +msgstr "" + +#: common/models.py:2049 +msgid "Check that all plugins are installed on startup - enable in container environments" +msgstr "" + +#: common/models.py:2057 +msgid "Check for plugin updates" +msgstr "" + +#: common/models.py:2058 +msgid "Enable periodic checks for updates to installed plugins" +msgstr "" + +#: common/models.py:2064 +msgid "Enable URL integration" +msgstr "" + +#: common/models.py:2065 +msgid "Enable plugins to add URL routes" +msgstr "" + +#: common/models.py:2071 +msgid "Enable navigation integration" +msgstr "" + +#: common/models.py:2072 +msgid "Enable plugins to integrate into navigation" +msgstr "" + +#: common/models.py:2078 +msgid "Enable app integration" +msgstr "" + +#: common/models.py:2079 +msgid "Enable plugins to add apps" +msgstr "" + +#: common/models.py:2085 +msgid "Enable schedule integration" +msgstr "" + +#: common/models.py:2086 +msgid "Enable plugins to run scheduled tasks" +msgstr "" + +#: common/models.py:2092 +msgid "Enable event integration" +msgstr "" + +#: common/models.py:2093 +msgid "Enable plugins to respond to internal events" +msgstr "" + +#: common/models.py:2099 +msgid "Enable interface integration" +msgstr "" + +#: common/models.py:2100 +msgid "Enable plugins to integrate into the user interface" +msgstr "" + +#: common/models.py:2106 +msgid "Enable project codes" +msgstr "" + +#: common/models.py:2107 +msgid "Enable project codes for tracking projects" +msgstr "" + +#: common/models.py:2112 +msgid "Stocktake Functionality" +msgstr "" + +#: common/models.py:2114 +msgid "Enable stocktake functionality for recording stock levels and calculating stock value" +msgstr "" + +#: common/models.py:2120 +msgid "Exclude External Locations" +msgstr "" + +#: common/models.py:2122 +msgid "Exclude stock items in external locations from stocktake calculations" +msgstr "" + +#: common/models.py:2128 +msgid "Automatic Stocktake Period" +msgstr "" + +#: common/models.py:2130 +msgid "Number of days between automatic stocktake recording (set to zero to disable)" +msgstr "" + +#: common/models.py:2136 +msgid "Report Deletion Interval" +msgstr "" + +#: common/models.py:2138 +msgid "Stocktake reports will be deleted after specified number of days" +msgstr "" + +#: common/models.py:2145 +msgid "Display Users full names" +msgstr "" + +#: common/models.py:2146 +msgid "Display Users full names instead of usernames" +msgstr "" + +#: common/models.py:2151 +msgid "Enable Test Station Data" +msgstr "" + +#: common/models.py:2152 +msgid "Enable test station data collection for test results" +msgstr "" + +#: common/models.py:2157 +msgid "Create Template on Upload" +msgstr "" + +#: common/models.py:2159 +msgid "Create a new test template when uploading test data which does not match an existing template" +msgstr "" + +#: common/models.py:2172 common/models.py:2552 +msgid "Settings key (must be unique - case insensitive" +msgstr "" + +#: common/models.py:2215 +msgid "Hide inactive parts" +msgstr "" + +#: common/models.py:2217 +msgid "Hide inactive parts in results displayed on the homepage" +msgstr "" + +#: common/models.py:2223 +msgid "Show subscribed parts" +msgstr "" + +#: common/models.py:2224 +msgid "Show subscribed parts on the homepage" +msgstr "" + +#: common/models.py:2229 +msgid "Show subscribed categories" +msgstr "" + +#: common/models.py:2230 +msgid "Show subscribed part categories on the homepage" +msgstr "" + +#: common/models.py:2235 +msgid "Show latest parts" +msgstr "" + +#: common/models.py:2236 +msgid "Show latest parts on the homepage" +msgstr "" + +#: common/models.py:2241 +msgid "Show invalid BOMs" +msgstr "" + +#: common/models.py:2242 +msgid "Show BOMs that await validation on the homepage" +msgstr "" + +#: common/models.py:2247 +msgid "Show recent stock changes" +msgstr "" + +#: common/models.py:2248 +msgid "Show recently changed stock items on the homepage" +msgstr "" + +#: common/models.py:2253 +msgid "Show low stock" +msgstr "" + +#: common/models.py:2254 +msgid "Show low stock items on the homepage" +msgstr "" + +#: common/models.py:2259 +msgid "Show depleted stock" +msgstr "" + +#: common/models.py:2260 +msgid "Show depleted stock items on the homepage" +msgstr "" + +#: common/models.py:2265 +msgid "Show needed stock" +msgstr "" + +#: common/models.py:2266 +msgid "Show stock items needed for builds on the homepage" +msgstr "" + +#: common/models.py:2271 +msgid "Show expired stock" +msgstr "" + +#: common/models.py:2272 +msgid "Show expired stock items on the homepage" +msgstr "" + +#: common/models.py:2277 +msgid "Show stale stock" +msgstr "" + +#: common/models.py:2278 +msgid "Show stale stock items on the homepage" +msgstr "" + +#: common/models.py:2283 +msgid "Show pending builds" +msgstr "" + +#: common/models.py:2284 +msgid "Show pending builds on the homepage" +msgstr "" + +#: common/models.py:2289 +msgid "Show overdue builds" +msgstr "" + +#: common/models.py:2290 +msgid "Show overdue builds on the homepage" +msgstr "" + +#: common/models.py:2295 +msgid "Show outstanding POs" +msgstr "" + +#: common/models.py:2296 +msgid "Show outstanding POs on the homepage" +msgstr "" + +#: common/models.py:2301 +msgid "Show overdue POs" +msgstr "" + +#: common/models.py:2302 +msgid "Show overdue POs on the homepage" +msgstr "" + +#: common/models.py:2307 +msgid "Show outstanding SOs" +msgstr "" + +#: common/models.py:2308 +msgid "Show outstanding SOs on the homepage" +msgstr "" + +#: common/models.py:2313 +msgid "Show overdue SOs" +msgstr "" + +#: common/models.py:2314 +msgid "Show overdue SOs on the homepage" +msgstr "" + +#: common/models.py:2319 +msgid "Show pending SO shipments" +msgstr "" + +#: common/models.py:2320 +msgid "Show pending SO shipments on the homepage" +msgstr "" + +#: common/models.py:2325 +msgid "Show News" +msgstr "" + +#: common/models.py:2326 +msgid "Show news on the homepage" +msgstr "" + +#: common/models.py:2331 +msgid "Inline label display" +msgstr "" + +#: common/models.py:2333 +msgid "Display PDF labels in the browser, instead of downloading as a file" +msgstr "" + +#: common/models.py:2339 +msgid "Default label printer" +msgstr "" + +#: common/models.py:2341 +msgid "Configure which label printer should be selected by default" +msgstr "" + +#: common/models.py:2347 +msgid "Inline report display" +msgstr "" + +#: common/models.py:2349 +msgid "Display PDF reports in the browser, instead of downloading as a file" +msgstr "" + +#: common/models.py:2355 +msgid "Search Parts" +msgstr "" + +#: common/models.py:2356 +msgid "Display parts in search preview window" +msgstr "" + +#: common/models.py:2361 +msgid "Search Supplier Parts" +msgstr "" + +#: common/models.py:2362 +msgid "Display supplier parts in search preview window" +msgstr "" + +#: common/models.py:2367 +msgid "Search Manufacturer Parts" +msgstr "" + +#: common/models.py:2368 +msgid "Display manufacturer parts in search preview window" +msgstr "" + +#: common/models.py:2373 +msgid "Hide Inactive Parts" +msgstr "" + +#: common/models.py:2374 +msgid "Excluded inactive parts from search preview window" +msgstr "" + +#: common/models.py:2379 +msgid "Search Categories" +msgstr "" + +#: common/models.py:2380 +msgid "Display part categories in search preview window" +msgstr "" + +#: common/models.py:2385 +msgid "Search Stock" +msgstr "" + +#: common/models.py:2386 +msgid "Display stock items in search preview window" +msgstr "" + +#: common/models.py:2391 +msgid "Hide Unavailable Stock Items" +msgstr "" + +#: common/models.py:2393 +msgid "Exclude stock items which are not available from the search preview window" +msgstr "" + +#: common/models.py:2399 +msgid "Search Locations" +msgstr "" + +#: common/models.py:2400 +msgid "Display stock locations in search preview window" +msgstr "" + +#: common/models.py:2405 +msgid "Search Companies" +msgstr "" + +#: common/models.py:2406 +msgid "Display companies in search preview window" +msgstr "" + +#: common/models.py:2411 +msgid "Search Build Orders" +msgstr "" + +#: common/models.py:2412 +msgid "Display build orders in search preview window" +msgstr "" + +#: common/models.py:2417 +msgid "Search Purchase Orders" +msgstr "" + +#: common/models.py:2418 +msgid "Display purchase orders in search preview window" +msgstr "" + +#: common/models.py:2423 +msgid "Exclude Inactive Purchase Orders" +msgstr "" + +#: common/models.py:2425 +msgid "Exclude inactive purchase orders from search preview window" +msgstr "" + +#: common/models.py:2431 +msgid "Search Sales Orders" +msgstr "" + +#: common/models.py:2432 +msgid "Display sales orders in search preview window" +msgstr "" + +#: common/models.py:2437 +msgid "Exclude Inactive Sales Orders" +msgstr "" + +#: common/models.py:2439 +msgid "Exclude inactive sales orders from search preview window" +msgstr "" + +#: common/models.py:2445 +msgid "Search Return Orders" +msgstr "" + +#: common/models.py:2446 +msgid "Display return orders in search preview window" +msgstr "" + +#: common/models.py:2451 +msgid "Exclude Inactive Return Orders" +msgstr "" + +#: common/models.py:2453 +msgid "Exclude inactive return orders from search preview window" +msgstr "" + +#: common/models.py:2459 +msgid "Search Preview Results" +msgstr "" + +#: common/models.py:2461 +msgid "Number of results to show in each section of the search preview window" +msgstr "" + +#: common/models.py:2467 +msgid "Regex Search" +msgstr "" + +#: common/models.py:2468 +msgid "Enable regular expressions in search queries" +msgstr "" + +#: common/models.py:2473 +msgid "Whole Word Search" +msgstr "" + +#: common/models.py:2474 +msgid "Search queries return results for whole word matches" +msgstr "" + +#: common/models.py:2479 +msgid "Show Quantity in Forms" +msgstr "" + +#: common/models.py:2480 +msgid "Display available part quantity in some forms" +msgstr "" + +#: common/models.py:2485 +msgid "Escape Key Closes Forms" +msgstr "" + +#: common/models.py:2486 +msgid "Use the escape key to close modal forms" +msgstr "" + +#: common/models.py:2491 +msgid "Fixed Navbar" +msgstr "" + +#: common/models.py:2492 +msgid "The navbar position is fixed to the top of the screen" +msgstr "" + +#: common/models.py:2497 +msgid "Date Format" +msgstr "" + +#: common/models.py:2498 +msgid "Preferred format for displaying dates" +msgstr "" + +#: common/models.py:2511 part/templates/part/detail.html:41 +msgid "Part Scheduling" +msgstr "" + +#: common/models.py:2512 +msgid "Display part scheduling information" +msgstr "" + +#: common/models.py:2517 part/templates/part/detail.html:62 +msgid "Part Stocktake" +msgstr "" + +#: common/models.py:2519 +msgid "Display part stocktake information (if stocktake functionality is enabled)" +msgstr "" + +#: common/models.py:2525 +msgid "Table String Length" +msgstr "" + +#: common/models.py:2527 +msgid "Maximum length limit for strings displayed in table views" +msgstr "" + +#: common/models.py:2533 +msgid "Receive error reports" +msgstr "" + +#: common/models.py:2534 +msgid "Receive notifications for system errors" +msgstr "" + +#: common/models.py:2539 +msgid "Last used printing machines" +msgstr "" + +#: common/models.py:2540 +msgid "Save the last used printing machines for a user" +msgstr "" + +#: common/models.py:2560 common/models.py:2561 common/models.py:2718 +#: common/models.py:2719 common/models.py:2964 common/models.py:2965 +#: common/models.py:3288 common/models.py:3289 importer/models.py:89 +#: part/models.py:3306 part/models.py:3393 part/models.py:3467 +#: part/models.py:3495 plugin/models.py:274 plugin/models.py:275 +#: report/templates/report/inventree_test_report.html:105 +#: templates/js/translated/stock.js:3121 users/models.py:111 +msgid "User" +msgstr "" + +#: common/models.py:2583 +msgid "Price break quantity" +msgstr "" + +#: common/models.py:2590 company/serializers.py:517 order/admin.py:42 +#: order/models.py:1423 order/models.py:2410 +#: templates/js/translated/company.js:1823 templates/js/translated/part.js:1892 +#: templates/js/translated/pricing.js:621 +#: templates/js/translated/return_order.js:739 +msgid "Price" +msgstr "" + +#: common/models.py:2591 +msgid "Unit price at specified quantity" +msgstr "" + +#: common/models.py:2695 common/models.py:2880 +msgid "Endpoint" +msgstr "" + +#: common/models.py:2696 +msgid "Endpoint at which this webhook is received" +msgstr "" + +#: common/models.py:2706 +msgid "Name for this webhook" +msgstr "" + +#: common/models.py:2710 +msgid "Is this webhook active" +msgstr "" + +#: common/models.py:2726 users/models.py:159 +msgid "Token" +msgstr "" + +#: common/models.py:2727 +msgid "Token for access" +msgstr "" + +#: common/models.py:2735 +msgid "Secret" +msgstr "" + +#: common/models.py:2736 +msgid "Shared secret for HMAC" +msgstr "" + +#: common/models.py:2844 +msgid "Message ID" +msgstr "" + +#: common/models.py:2845 +msgid "Unique identifier for this message" +msgstr "" + +#: common/models.py:2853 +msgid "Host" +msgstr "" + +#: common/models.py:2854 +msgid "Host from which this message was received" +msgstr "" + +#: common/models.py:2862 +msgid "Header" +msgstr "" + +#: common/models.py:2863 +msgid "Header of this message" +msgstr "" + +#: common/models.py:2870 +msgid "Body" +msgstr "" + +#: common/models.py:2871 +msgid "Body of this message" +msgstr "" + +#: common/models.py:2881 +msgid "Endpoint on which this message was received" +msgstr "" + +#: common/models.py:2886 +msgid "Worked on" +msgstr "" + +#: common/models.py:2887 +msgid "Was the work on this message finished?" +msgstr "" + +#: common/models.py:3013 +msgid "Id" +msgstr "" + +#: common/models.py:3015 templates/js/translated/company.js:965 +#: templates/js/translated/news.js:44 +msgid "Title" +msgstr "" + +#: common/models.py:3017 common/models.py:3272 company/models.py:146 +#: company/models.py:443 company/models.py:509 company/models.py:815 +#: order/models.py:303 order/models.py:1378 order/models.py:1810 +#: part/admin.py:55 part/models.py:1069 +#: part/templates/part/part_scheduling.html:11 +#: report/templates/report/inventree_build_order_report.html:164 +#: stock/admin.py:230 templates/js/translated/company.js:1319 +#: templates/js/translated/company.js:1673 templates/js/translated/order.js:376 +#: templates/js/translated/part.js:2475 +#: templates/js/translated/purchase_order.js:2110 +#: templates/js/translated/purchase_order.js:2274 +#: templates/js/translated/return_order.js:778 +#: templates/js/translated/sales_order.js:1092 +#: templates/js/translated/sales_order.js:2023 +msgid "Link" +msgstr "" + +#: common/models.py:3019 templates/js/translated/news.js:60 +msgid "Published" +msgstr "" + +#: common/models.py:3021 templates/InvenTree/settings/plugin_settings.html:32 +#: templates/js/translated/news.js:56 templates/js/translated/plugin.js:103 +msgid "Author" +msgstr "" + +#: common/models.py:3023 templates/js/translated/news.js:52 +msgid "Summary" +msgstr "" + +#: common/models.py:3026 +msgid "Read" +msgstr "" + +#: common/models.py:3026 +msgid "Was this news item read?" +msgstr "" + +#: common/models.py:3043 company/models.py:156 part/models.py:1079 +#: report/templates/report/inventree_bill_of_materials_report.html:126 +#: report/templates/report/inventree_bill_of_materials_report.html:148 +#: report/templates/report/inventree_return_order_report.html:35 +#: stock/templates/stock/item_base.html:129 templates/503.html:31 +#: templates/hover_image.html:7 templates/hover_image.html:9 +#: templates/modals.html:6 +msgid "Image" +msgstr "" + +#: common/models.py:3043 +msgid "Image file" +msgstr "" + +#: common/models.py:3055 common/models.py:3256 +msgid "Target model type for this image" +msgstr "" + +#: common/models.py:3059 +msgid "Target model ID for this image" +msgstr "" + +#: common/models.py:3081 +msgid "Custom Unit" +msgstr "" + +#: common/models.py:3099 +msgid "Unit symbol must be unique" +msgstr "" + +#: common/models.py:3114 +msgid "Unit name must be a valid identifier" +msgstr "" + +#: common/models.py:3133 +msgid "Unit name" +msgstr "" + +#: common/models.py:3140 templates/InvenTree/settings/settings_staff_js.html:75 +msgid "Symbol" +msgstr "" + +#: common/models.py:3141 +msgid "Optional unit symbol" +msgstr "" + +#: common/models.py:3147 templates/InvenTree/settings/settings_staff_js.html:71 +msgid "Definition" +msgstr "" + +#: common/models.py:3148 +msgid "Unit definition" +msgstr "" + +#: common/models.py:3206 common/models.py:3263 stock/models.py:2547 +#: stock/serializers.py:244 templates/js/translated/attachment.js:119 +#: templates/js/translated/attachment.js:345 +msgid "Attachment" +msgstr "" + +#: common/models.py:3218 +msgid "Missing file" +msgstr "" + +#: common/models.py:3219 +msgid "Missing external link" +msgstr "" + +#: common/models.py:3264 +msgid "Select file to attach" +msgstr "" + +#: common/models.py:3279 templates/js/translated/attachment.js:120 +#: templates/js/translated/attachment.js:360 +msgid "Comment" +msgstr "" + +#: common/models.py:3280 +msgid "Attachment comment" +msgstr "" + +#: common/models.py:3296 +msgid "Upload date" +msgstr "" + +#: common/models.py:3297 +msgid "Date the file was uploaded" +msgstr "" + +#: common/models.py:3301 +msgid "File size" +msgstr "" + +#: common/models.py:3301 +msgid "File size in bytes" +msgstr "" + +#: common/models.py:3339 common/serializers.py:604 +msgid "Invalid model type specified for attachment" +msgstr "" + +#: common/models.py:3348 plugin/models.py:43 users/models.py:100 +msgid "Key" +msgstr "" + +#: common/models.py:3349 +msgid "Value that will be saved in the models database" +msgstr "" + +#: common/models.py:3352 +msgid "Name of the state" +msgstr "" + +#: common/models.py:3356 +msgid "Label" +msgstr "" + +#: common/models.py:3357 +msgid "Label that will be displayed in the frontend" +msgstr "" + +#: common/models.py:3363 +msgid "Color" +msgstr "" + +#: common/models.py:3364 +msgid "Color that will be displayed in the frontend" +msgstr "" + +#: common/models.py:3367 +msgid "Logical Key" +msgstr "" + +#: common/models.py:3369 +msgid "State logical key that is equal to this custom state in business logic" +msgstr "" + +#: common/models.py:3377 +msgid "Model" +msgstr "" + +#: common/models.py:3378 +msgid "Model this state is associated with" +msgstr "" + +#: common/models.py:3382 +msgid "Reference Status Set" +msgstr "" + +#: common/models.py:3383 +msgid "Status set that is extended with this custom state" +msgstr "" + +#: common/models.py:3389 +msgid "Custom State" +msgstr "" + +#: common/models.py:3390 +msgid "Custom States" +msgstr "" + +#: common/models.py:3405 +msgid "Model must be selected" +msgstr "" + +#: common/models.py:3408 +msgid "Key must be selected" +msgstr "" + +#: common/models.py:3411 +msgid "Logical key must be selected" +msgstr "" + +#: common/models.py:3415 +msgid "Key must be different from logical key" +msgstr "" + +#: common/models.py:3419 +msgid "Reference status must be selected" +msgstr "" + +#: common/models.py:3431 +msgid "Reference status set not found" +msgstr "" + +#: common/models.py:3437 +msgid "Key must be different from the logical keys of the reference status" +msgstr "" + +#: common/models.py:3443 +msgid "Logical key must be in the logical keys of the reference status" +msgstr "" + +#: common/notifications.py:310 +#, python-brace-format +msgid "New {verbose_name}" +msgstr "" + +#: common/notifications.py:312 +msgid "A new order has been created and assigned to you" +msgstr "" + +#: common/notifications.py:318 +#, python-brace-format +msgid "{verbose_name} canceled" +msgstr "" + +#: common/notifications.py:320 +msgid "A order that is assigned to you was canceled" +msgstr "" + +#: common/notifications.py:326 common/notifications.py:333 order/api.py:460 +msgid "Items Received" +msgstr "" + +#: common/notifications.py:328 +msgid "Items have been received against a purchase order" +msgstr "" + +#: common/notifications.py:335 +msgid "Items have been received against a return order" +msgstr "" + +#: common/notifications.py:453 +msgid "Error raised by plugin" +msgstr "" + +#: common/serializers.py:418 +msgid "Is Running" +msgstr "" + +#: common/serializers.py:424 +msgid "Pending Tasks" +msgstr "" + +#: common/serializers.py:430 +msgid "Scheduled Tasks" +msgstr "" + +#: common/serializers.py:436 +msgid "Failed Tasks" +msgstr "" + +#: common/serializers.py:451 +msgid "Task ID" +msgstr "" + +#: common/serializers.py:451 +msgid "Unique task ID" +msgstr "" + +#: common/serializers.py:453 +msgid "Lock" +msgstr "" + +#: common/serializers.py:453 +msgid "Lock time" +msgstr "" + +#: common/serializers.py:455 +msgid "Task name" +msgstr "" + +#: common/serializers.py:457 +msgid "Function" +msgstr "" + +#: common/serializers.py:457 +msgid "Function name" +msgstr "" + +#: common/serializers.py:459 +msgid "Arguments" +msgstr "" + +#: common/serializers.py:459 +msgid "Task arguments" +msgstr "" + +#: common/serializers.py:462 +msgid "Keyword Arguments" +msgstr "" + +#: common/serializers.py:462 +msgid "Task keyword arguments" +msgstr "" + +#: common/serializers.py:572 +msgid "Filename" +msgstr "" + +#: common/serializers.py:579 report/api.py:100 report/serializers.py:54 +msgid "Model Type" +msgstr "" + +#: common/serializers.py:607 +msgid "User does not have permission to create or edit attachments for this model" +msgstr "" + +#: common/validators.py:35 +msgid "No attachment model type provided" +msgstr "" + +#: common/validators.py:41 +msgid "Invalid attachment model type" +msgstr "" + +#: common/validators.py:82 +msgid "Minimum places cannot be greater than maximum places" +msgstr "" + +#: common/validators.py:94 +msgid "Maximum places cannot be less than minimum places" +msgstr "" + +#: common/validators.py:105 +msgid "An empty domain is not allowed." +msgstr "" + +#: common/validators.py:107 +#, python-brace-format +msgid "Invalid domain name: {domain}" +msgstr "" + +#: common/views.py:84 order/templates/order/order_wizard/po_upload.html:51 +#: order/templates/order/purchase_order_detail.html:24 order/views.py:118 +#: part/templates/part/import_wizard/part_upload.html:58 part/views.py:109 +#: templates/patterns/wizard/upload.html:37 +msgid "Upload File" +msgstr "" + +#: common/views.py:84 order/templates/order/order_wizard/match_fields.html:52 +#: order/views.py:119 +#: part/templates/part/import_wizard/ajax_match_fields.html:45 +#: part/templates/part/import_wizard/match_fields.html:52 part/views.py:110 +#: templates/patterns/wizard/match_fields.html:51 +msgid "Match Fields" +msgstr "" + +#: common/views.py:84 +msgid "Match Items" +msgstr "" + +#: common/views.py:397 +msgid "Fields matching failed" +msgstr "" + +#: common/views.py:460 +msgid "Parts imported" +msgstr "" + +#: common/views.py:490 order/templates/order/order_wizard/match_fields.html:27 +#: order/templates/order/order_wizard/match_parts.html:19 +#: order/templates/order/order_wizard/po_upload.html:49 +#: part/templates/part/import_wizard/match_fields.html:27 +#: part/templates/part/import_wizard/match_references.html:19 +#: part/templates/part/import_wizard/part_upload.html:56 +#: templates/patterns/wizard/match_fields.html:26 +#: templates/patterns/wizard/upload.html:35 +msgid "Previous Step" +msgstr "" + +#: company/api.py:141 +msgid "Part is Active" +msgstr "" + +#: company/api.py:145 +msgid "Manufacturer is Active" +msgstr "" + +#: company/api.py:278 +msgid "Supplier Part is Active" +msgstr "" + +#: company/api.py:282 +msgid "Internal Part is Active" +msgstr "" + +#: company/api.py:286 +msgid "Supplier is Active" +msgstr "" + +#: company/models.py:97 company/models.py:368 +#: company/templates/company/company_base.html:8 +#: company/templates/company/company_base.html:12 stock/api.py:811 +#: templates/InvenTree/search.html:178 templates/js/translated/company.js:496 +msgid "Company" +msgstr "" + +#: company/models.py:98 company/views.py:51 +#: templates/js/translated/search.js:192 +msgid "Companies" +msgstr "" + +#: company/models.py:114 +msgid "Company description" +msgstr "" + +#: company/models.py:115 +msgid "Description of the company" +msgstr "" + +#: company/models.py:120 company/templates/company/company_base.html:106 +#: templates/InvenTree/settings/plugin_settings.html:54 +#: templates/js/translated/company.js:532 +msgid "Website" +msgstr "" + +#: company/models.py:120 +msgid "Company website URL" +msgstr "" + +#: company/models.py:125 +msgid "Phone number" +msgstr "" + +#: company/models.py:127 +msgid "Contact phone number" +msgstr "" + +#: company/models.py:134 +msgid "Contact email address" +msgstr "" + +#: company/models.py:139 company/models.py:272 +#: company/templates/company/company_base.html:145 order/models.py:343 +#: order/templates/order/order_base.html:208 +#: order/templates/order/return_order_base.html:177 +#: order/templates/order/sales_order_base.html:221 +msgid "Contact" +msgstr "" + +#: company/models.py:141 +msgid "Point of contact" +msgstr "" + +#: company/models.py:147 +msgid "Link to external company information" +msgstr "" + +#: company/models.py:160 +msgid "Is this company active?" +msgstr "" + +#: company/models.py:165 +msgid "Is customer" +msgstr "" + +#: company/models.py:166 +msgid "Do you sell items to this company?" +msgstr "" + +#: company/models.py:171 +msgid "Is supplier" +msgstr "" + +#: company/models.py:172 +msgid "Do you purchase items from this company?" +msgstr "" + +#: company/models.py:177 +msgid "Is manufacturer" +msgstr "" + +#: company/models.py:178 +msgid "Does this company manufacture parts?" +msgstr "" + +#: company/models.py:186 +msgid "Default currency used for this company" +msgstr "" + +#: company/models.py:311 company/templates/company/company_base.html:124 +#: order/models.py:353 order/templates/order/order_base.html:215 +#: order/templates/order/return_order_base.html:184 +#: order/templates/order/sales_order_base.html:228 +msgid "Address" +msgstr "" + +#: company/models.py:312 company/templates/company/sidebar.html:35 +msgid "Addresses" +msgstr "" + +#: company/models.py:369 +msgid "Select company" +msgstr "" + +#: company/models.py:374 +msgid "Address title" +msgstr "" + +#: company/models.py:375 +msgid "Title describing the address entry" +msgstr "" + +#: company/models.py:381 +msgid "Primary address" +msgstr "" + +#: company/models.py:382 +msgid "Set as primary address" +msgstr "" + +#: company/models.py:387 templates/js/translated/company.js:914 +#: templates/js/translated/company.js:971 +msgid "Line 1" +msgstr "" + +#: company/models.py:388 +msgid "Address line 1" +msgstr "" + +#: company/models.py:394 templates/js/translated/company.js:915 +#: templates/js/translated/company.js:977 +msgid "Line 2" +msgstr "" + +#: company/models.py:395 +msgid "Address line 2" +msgstr "" + +#: company/models.py:401 company/models.py:402 +#: templates/js/translated/company.js:983 +msgid "Postal code" +msgstr "" + +#: company/models.py:408 +msgid "City/Region" +msgstr "" + +#: company/models.py:409 +msgid "Postal code city/region" +msgstr "" + +#: company/models.py:415 +msgid "State/Province" +msgstr "" + +#: company/models.py:416 +msgid "State or province" +msgstr "" + +#: company/models.py:422 templates/js/translated/company.js:1001 +msgid "Country" +msgstr "" + +#: company/models.py:423 +msgid "Address country" +msgstr "" + +#: company/models.py:429 +msgid "Courier shipping notes" +msgstr "" + +#: company/models.py:430 +msgid "Notes for shipping courier" +msgstr "" + +#: company/models.py:436 +msgid "Internal shipping notes" +msgstr "" + +#: company/models.py:437 +msgid "Shipping notes for internal use" +msgstr "" + +#: company/models.py:444 +msgid "Link to address information (external)" +msgstr "" + +#: company/models.py:467 company/models.py:584 company/models.py:808 +#: company/templates/company/manufacturer_part.html:7 +#: company/templates/company/manufacturer_part.html:24 +#: stock/templates/stock/item_base.html:213 +msgid "Manufacturer Part" +msgstr "" + +#: company/models.py:484 company/models.py:776 stock/models.py:791 +#: stock/serializers.py:452 stock/templates/stock/item_base.html:138 +#: templates/js/translated/bom.js:622 +msgid "Base Part" +msgstr "" + +#: company/models.py:486 company/models.py:778 +msgid "Select part" +msgstr "" + +#: company/models.py:495 company/templates/company/company_base.html:82 +#: company/templates/company/manufacturer_part.html:90 +#: company/templates/company/supplier_part.html:145 part/serializers.py:565 +#: stock/templates/stock/item_base.html:203 +#: templates/js/translated/company.js:507 +#: templates/js/translated/company.js:1118 +#: templates/js/translated/company.js:1296 +#: templates/js/translated/company.js:1611 +#: templates/js/translated/table_filters.js:812 +msgid "Manufacturer" +msgstr "" + +#: company/models.py:496 +msgid "Select manufacturer" +msgstr "" + +#: company/models.py:502 company/templates/company/manufacturer_part.html:101 +#: company/templates/company/supplier_part.html:153 order/serializers.py:557 +#: part/serializers.py:575 templates/js/translated/company.js:351 +#: templates/js/translated/company.js:1117 +#: templates/js/translated/company.js:1312 +#: templates/js/translated/company.js:1630 templates/js/translated/part.js:1807 +#: templates/js/translated/purchase_order.js:1921 +#: templates/js/translated/purchase_order.js:2123 +msgid "MPN" +msgstr "" + +#: company/models.py:510 +msgid "URL for external manufacturer part link" +msgstr "" + +#: company/models.py:519 +msgid "Manufacturer part description" +msgstr "" + +#: company/models.py:572 +msgid "Manufacturer Part Parameter" +msgstr "" + +#: company/models.py:591 +msgid "Parameter name" +msgstr "" + +#: company/models.py:597 report/templates/report/inventree_test_report.html:104 +#: stock/models.py:2539 templates/js/translated/company.js:1166 +#: templates/js/translated/company.js:1419 templates/js/translated/part.js:1499 +#: templates/js/translated/stock.js:1607 +msgid "Value" +msgstr "" + +#: company/models.py:598 +msgid "Parameter value" +msgstr "" + +#: company/models.py:605 company/templates/company/supplier_part.html:168 +#: part/admin.py:57 part/models.py:1159 part/models.py:3770 +#: part/templates/part/part_base.html:300 +#: templates/js/translated/company.js:1425 templates/js/translated/part.js:1518 +#: templates/js/translated/part.js:1622 templates/js/translated/part.js:2376 +msgid "Units" +msgstr "" + +#: company/models.py:606 +msgid "Parameter units" +msgstr "" + +#: company/models.py:659 company/templates/company/supplier_part.html:7 +#: company/templates/company/supplier_part.html:24 order/api.py:440 +#: order/serializers.py:492 stock/models.py:802 +#: stock/templates/stock/item_base.html:229 +#: templates/js/translated/build.js:1055 +#: templates/js/translated/company.js:1600 +#: templates/js/translated/purchase_order.js:752 +#: templates/js/translated/stock.js:2366 +msgid "Supplier Part" +msgstr "" + +#: company/models.py:716 +msgid "Pack units must be compatible with the base part units" +msgstr "" + +#: company/models.py:723 +msgid "Pack units must be greater than zero" +msgstr "" + +#: company/models.py:737 +msgid "Linked manufacturer part must reference the same base part" +msgstr "" + +#: company/models.py:786 company/templates/company/company_base.html:87 +#: company/templates/company/supplier_part.html:129 order/models.py:492 +#: order/templates/order/order_base.html:141 part/bom.py:279 part/bom.py:314 +#: part/serializers.py:549 plugin/builtin/suppliers/digikey.py:25 +#: plugin/builtin/suppliers/lcsc.py:26 plugin/builtin/suppliers/mouser.py:24 +#: plugin/builtin/suppliers/tme.py:26 stock/templates/stock/item_base.html:220 +#: templates/email/overdue_purchase_order.html:16 +#: templates/js/translated/company.js:350 +#: templates/js/translated/company.js:511 +#: templates/js/translated/company.js:1584 templates/js/translated/part.js:1775 +#: templates/js/translated/pricing.js:498 +#: templates/js/translated/purchase_order.js:1759 +#: templates/js/translated/table_filters.js:816 +msgid "Supplier" +msgstr "" + +#: company/models.py:787 +msgid "Select supplier" +msgstr "" + +#: company/models.py:793 part/serializers.py:560 +msgid "Supplier stock keeping unit" +msgstr "" + +#: company/models.py:799 +msgid "Is this supplier part active?" +msgstr "" + +#: company/models.py:809 +msgid "Select manufacturer part" +msgstr "" + +#: company/models.py:816 +msgid "URL for external supplier part link" +msgstr "" + +#: company/models.py:825 +msgid "Supplier part description" +msgstr "" + +#: company/models.py:832 company/templates/company/supplier_part.html:187 +#: order/serializers.py:699 part/admin.py:415 part/models.py:4288 +#: part/templates/part/upload_bom.html:59 +#: report/templates/report/inventree_bill_of_materials_report.html:140 +#: report/templates/report/inventree_purchase_order_report.html:32 +#: report/templates/report/inventree_return_order_report.html:27 +#: report/templates/report/inventree_sales_order_report.html:32 +#: report/templates/report/inventree_stock_location_report.html:105 +#: stock/serializers.py:783 templates/js/translated/purchase_order.js:1185 +#: templates/js/translated/purchase_order.js:1344 +msgid "Note" +msgstr "" + +#: company/models.py:841 part/models.py:2128 +msgid "base cost" +msgstr "" + +#: company/models.py:842 part/models.py:2129 +msgid "Minimum charge (e.g. stocking fee)" +msgstr "" + +#: company/models.py:850 +msgid "Part packaging" +msgstr "" + +#: company/models.py:855 templates/js/translated/company.js:1651 +#: templates/js/translated/part.js:1828 templates/js/translated/part.js:1884 +#: templates/js/translated/purchase_order.js:311 +#: templates/js/translated/purchase_order.js:841 +#: templates/js/translated/purchase_order.js:1103 +#: templates/js/translated/purchase_order.js:2154 +#: templates/js/translated/purchase_order.js:2171 +msgid "Pack Quantity" +msgstr "" + +#: company/models.py:857 +msgid "Total quantity supplied in a single pack. Leave empty for single items." +msgstr "" + +#: company/models.py:876 part/models.py:2135 +msgid "multiple" +msgstr "" + +#: company/models.py:877 +msgid "Order multiple" +msgstr "" + +#: company/models.py:889 +msgid "Quantity available from supplier" +msgstr "" + +#: company/models.py:895 +msgid "Availability Updated" +msgstr "" + +#: company/models.py:896 +msgid "Date of last update of availability data" +msgstr "" + +#: company/models.py:1024 +msgid "Supplier Price Break" +msgstr "" + +#: company/serializers.py:178 +msgid "Default currency used for this supplier" +msgstr "" + +#: company/serializers.py:214 +msgid "Company Name" +msgstr "" + +#: company/serializers.py:397 part/admin.py:126 part/serializers.py:917 +#: part/templates/part/part_base.html:197 +#: templates/js/translated/company.js:1689 +#: templates/js/translated/table_filters.js:362 +msgid "In Stock" +msgstr "" + +#: company/templates/company/company_base.html:16 +#: part/templates/part/part_base.html:146 +#: templates/js/translated/company.js:1287 +#: templates/js/translated/company.js:1575 +#: templates/js/translated/model_renderers.js:313 +#: templates/js/translated/part.js:817 templates/js/translated/part.js:1225 +msgid "Inactive" +msgstr "" + +#: company/templates/company/company_base.html:27 +#: templates/js/translated/purchase_order.js:242 +msgid "Create Purchase Order" +msgstr "" + +#: company/templates/company/company_base.html:33 +msgid "Company actions" +msgstr "" + +#: company/templates/company/company_base.html:38 +msgid "Edit company information" +msgstr "" + +#: company/templates/company/company_base.html:39 +#: templates/js/translated/company.js:445 +msgid "Edit Company" +msgstr "" + +#: company/templates/company/company_base.html:43 +msgid "Delete company" +msgstr "" + +#: company/templates/company/company_base.html:44 +#: company/templates/company/company_base.html:168 +msgid "Delete Company" +msgstr "" + +#: company/templates/company/company_base.html:53 +#: company/templates/company/manufacturer_part.html:51 +#: company/templates/company/supplier_part.html:83 +#: part/templates/part/part_thumb.html:20 +#: report/templates/report/inventree_build_order_report.html:98 +#: report/templates/report/inventree_purchase_order_report.html:40 +#: report/templates/report/inventree_sales_order_report.html:40 +#: report/templates/report/inventree_test_report.html:84 +#: report/templates/report/inventree_test_report.html:162 +msgid "Part image" +msgstr "" + +#: company/templates/company/company_base.html:61 +#: part/templates/part/part_thumb.html:12 +msgid "Upload new image" +msgstr "" + +#: company/templates/company/company_base.html:64 +#: part/templates/part/part_thumb.html:14 +msgid "Download image from URL" +msgstr "" + +#: company/templates/company/company_base.html:66 +#: part/templates/part/part_thumb.html:16 +msgid "Delete image" +msgstr "" + +#: company/templates/company/company_base.html:92 order/models.py:991 +#: order/models.py:2140 order/templates/order/return_order_base.html:134 +#: order/templates/order/sales_order_base.html:151 stock/models.py:844 +#: stock/models.py:845 stock/serializers.py:1336 +#: stock/templates/stock/item_base.html:401 +#: templates/email/overdue_sales_order.html:16 +#: templates/js/translated/company.js:503 +#: templates/js/translated/return_order.js:295 +#: templates/js/translated/sales_order.js:820 +#: templates/js/translated/stock.js:3044 +#: templates/js/translated/table_filters.js:820 +msgid "Customer" +msgstr "" + +#: company/templates/company/company_base.html:117 +msgid "Uses default currency" +msgstr "" + +#: company/templates/company/company_base.html:131 +msgid "Phone" +msgstr "" + +#: company/templates/company/company_base.html:211 +#: part/templates/part/part_base.html:543 +msgid "Remove Image" +msgstr "" + +#: company/templates/company/company_base.html:212 +msgid "Remove associated image from this company" +msgstr "" + +#: company/templates/company/company_base.html:214 +#: part/templates/part/part_base.html:546 +#: templates/InvenTree/settings/user.html:88 +#: templates/InvenTree/settings/user_sso.html:43 +msgid "Remove" +msgstr "" + +#: company/templates/company/company_base.html:243 +#: part/templates/part/part_base.html:575 +msgid "Upload Image" +msgstr "" + +#: company/templates/company/company_base.html:258 +#: part/templates/part/part_base.html:629 +msgid "Download Image" +msgstr "" + +#: company/templates/company/detail.html:15 +#: company/templates/company/manufacturer_part_sidebar.html:7 +#: templates/InvenTree/search.html:120 templates/js/translated/search.js:147 +msgid "Supplier Parts" +msgstr "" + +#: company/templates/company/detail.html:19 +msgid "Create new supplier part" +msgstr "" + +#: company/templates/company/detail.html:20 +#: company/templates/company/manufacturer_part.html:123 +#: part/templates/part/detail.html:372 +msgid "New Supplier Part" +msgstr "" + +#: company/templates/company/detail.html:41 templates/InvenTree/search.html:105 +#: templates/js/translated/search.js:151 +msgid "Manufacturer Parts" +msgstr "" + +#: company/templates/company/detail.html:45 +msgid "Create new manufacturer part" +msgstr "" + +#: company/templates/company/detail.html:46 part/templates/part/detail.html:392 +msgid "New Manufacturer Part" +msgstr "" + +#: company/templates/company/detail.html:65 +msgid "Supplier Stock" +msgstr "" + +#: company/templates/company/detail.html:75 +#: company/templates/company/sidebar.html:12 +#: company/templates/company/supplier_part_sidebar.html:7 +#: order/templates/order/order_base.html:13 +#: order/templates/order/purchase_orders.html:8 +#: order/templates/order/purchase_orders.html:12 +#: part/templates/part/detail.html:122 part/templates/part/part_sidebar.html:35 +#: templates/InvenTree/index.html:227 templates/InvenTree/search.html:199 +#: templates/InvenTree/settings/sidebar.html:57 +#: templates/js/translated/search.js:205 templates/navbar.html:50 +#: users/models.py:208 +msgid "Purchase Orders" +msgstr "" + +#: company/templates/company/detail.html:79 +#: order/templates/order/purchase_orders.html:17 +msgid "Create new purchase order" +msgstr "" + +#: company/templates/company/detail.html:80 +#: order/templates/order/purchase_orders.html:18 +msgid "New Purchase Order" +msgstr "" + +#: company/templates/company/detail.html:101 +#: company/templates/company/sidebar.html:21 +#: order/templates/order/sales_order_base.html:13 +#: order/templates/order/sales_orders.html:8 +#: order/templates/order/sales_orders.html:15 +#: part/templates/part/detail.html:143 part/templates/part/part_sidebar.html:39 +#: templates/InvenTree/index.html:259 templates/InvenTree/search.html:219 +#: templates/InvenTree/settings/sidebar.html:59 +#: templates/js/translated/search.js:219 templates/navbar.html:62 +#: users/models.py:209 +msgid "Sales Orders" +msgstr "" + +#: company/templates/company/detail.html:105 +#: order/templates/order/sales_orders.html:20 +msgid "Create new sales order" +msgstr "" + +#: company/templates/company/detail.html:106 +#: order/templates/order/sales_orders.html:21 +msgid "New Sales Order" +msgstr "" + +#: company/templates/company/detail.html:126 +msgid "Assigned Stock" +msgstr "" + +#: company/templates/company/detail.html:142 +#: company/templates/company/sidebar.html:29 +#: order/templates/order/return_order_base.html:13 +#: order/templates/order/return_orders.html:8 +#: order/templates/order/return_orders.html:15 +#: templates/InvenTree/settings/sidebar.html:61 +#: templates/js/translated/search.js:232 templates/navbar.html:65 +#: users/models.py:210 +msgid "Return Orders" +msgstr "" + +#: company/templates/company/detail.html:146 +#: order/templates/order/return_orders.html:20 +msgid "Create new return order" +msgstr "" + +#: company/templates/company/detail.html:147 +#: order/templates/order/return_orders.html:21 +msgid "New Return Order" +msgstr "" + +#: company/templates/company/detail.html:168 +msgid "Company Notes" +msgstr "" + +#: company/templates/company/detail.html:183 +msgid "Company Contacts" +msgstr "" + +#: company/templates/company/detail.html:187 +#: company/templates/company/detail.html:188 +msgid "Add Contact" +msgstr "" + +#: company/templates/company/detail.html:206 +msgid "Company addresses" +msgstr "" + +#: company/templates/company/detail.html:210 +#: company/templates/company/detail.html:211 +msgid "Add Address" +msgstr "" + +#: company/templates/company/manufacturer_part.html:15 company/views.py:37 +#: templates/InvenTree/search.html:180 templates/navbar.html:49 +msgid "Manufacturers" +msgstr "" + +#: company/templates/company/manufacturer_part.html:35 +#: company/templates/company/supplier_part.html:227 +#: part/templates/part/detail.html:125 part/templates/part/part_base.html:83 +msgid "Order part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:39 +#: templates/js/translated/company.js:1343 +msgid "Edit manufacturer part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:43 +#: templates/js/translated/company.js:1344 +msgid "Delete manufacturer part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:65 +#: company/templates/company/supplier_part.html:97 order/api.py:446 +#: order/serializers.py:565 +msgid "Internal Part" +msgstr "" + +#: company/templates/company/manufacturer_part.html:95 +msgid "No manufacturer information available" +msgstr "" + +#: company/templates/company/manufacturer_part.html:119 +#: company/templates/company/supplier_part.html:15 company/views.py:31 +#: part/admin.py:122 part/serializers.py:923 +#: part/templates/part/part_sidebar.html:33 templates/InvenTree/search.html:190 +#: templates/navbar.html:48 +msgid "Suppliers" +msgstr "" + +#: company/templates/company/manufacturer_part.html:156 +#: company/templates/company/manufacturer_part_sidebar.html:5 +#: part/templates/part/category_sidebar.html:20 +#: part/templates/part/detail.html:211 part/templates/part/part_sidebar.html:8 +msgid "Parameters" +msgstr "" + +#: company/templates/company/manufacturer_part.html:160 +#: part/templates/part/detail.html:216 +#: templates/InvenTree/settings/category.html:12 +#: templates/InvenTree/settings/part_parameters.html:24 +msgid "New Parameter" +msgstr "" + +#: company/templates/company/manufacturer_part.html:177 +msgid "Manufacturer Part Notes" +msgstr "" + +#: company/templates/company/manufacturer_part.html:225 +#: templates/js/translated/part.js:1429 +msgid "Add Parameter" +msgstr "" + +#: company/templates/company/sidebar.html:6 +msgid "Manufactured Parts" +msgstr "" + +#: company/templates/company/sidebar.html:10 +msgid "Supplied Parts" +msgstr "" + +#: company/templates/company/sidebar.html:16 +msgid "Supplied Stock Items" +msgstr "" + +#: company/templates/company/sidebar.html:25 +msgid "Assigned Stock Items" +msgstr "" + +#: company/templates/company/sidebar.html:33 +msgid "Contacts" +msgstr "" + +#: company/templates/company/supplier_part.html:50 +#: templates/js/translated/company.js:1526 +msgid "Supplier part actions" +msgstr "" + +#: company/templates/company/supplier_part.html:55 +#: company/templates/company/supplier_part.html:56 +#: company/templates/company/supplier_part.html:228 +#: part/templates/part/detail.html:126 +msgid "Order Part" +msgstr "" + +#: company/templates/company/supplier_part.html:60 +#: company/templates/company/supplier_part.html:61 +msgid "Update Availability" +msgstr "" + +#: company/templates/company/supplier_part.html:63 +#: company/templates/company/supplier_part.html:64 +#: templates/js/translated/company.js:294 +msgid "Edit Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:68 +#: company/templates/company/supplier_part.html:69 +#: templates/js/translated/company.js:269 +msgid "Duplicate Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:73 +msgid "Delete Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:74 +msgid "Delete Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:133 +msgid "No supplier information available" +msgstr "" + +#: company/templates/company/supplier_part.html:139 order/serializers.py:554 +#: part/bom.py:286 part/bom.py:315 part/serializers.py:559 +#: templates/js/translated/company.js:349 templates/js/translated/part.js:1793 +#: templates/js/translated/pricing.js:510 +#: templates/js/translated/purchase_order.js:1920 +#: templates/js/translated/purchase_order.js:2098 +msgid "SKU" +msgstr "" + +#: company/templates/company/supplier_part.html:206 +msgid "Supplier Part Stock" +msgstr "" + +#: company/templates/company/supplier_part.html:209 +#: part/templates/part/detail.html:24 stock/templates/stock/location.html:204 +msgid "Create new stock item" +msgstr "" + +#: company/templates/company/supplier_part.html:210 +#: part/templates/part/detail.html:25 stock/templates/stock/location.html:205 +#: templates/js/translated/stock.js:543 +msgid "New Stock Item" +msgstr "" + +#: company/templates/company/supplier_part.html:223 +msgid "Supplier Part Orders" +msgstr "" + +#: company/templates/company/supplier_part.html:246 +msgid "Pricing Information" +msgstr "" + +#: company/templates/company/supplier_part.html:251 +#: templates/js/translated/company.js:398 +#: templates/js/translated/pricing.js:684 +msgid "Add Price Break" +msgstr "" + +#: company/templates/company/supplier_part.html:270 +msgid "Supplier Part Notes" +msgstr "" + +#: company/templates/company/supplier_part.html:305 +msgid "Supplier Part QR Code" +msgstr "" + +#: company/templates/company/supplier_part.html:316 +msgid "Link Barcode to Supplier Part" +msgstr "" + +#: company/templates/company/supplier_part.html:388 +msgid "Update Part Availability" +msgstr "" + +#: company/templates/company/supplier_part_sidebar.html:5 +#: part/serializers.py:921 part/stocktake.py:223 +#: part/templates/part/category.html:180 +#: part/templates/part/category_sidebar.html:17 stock/admin.py:68 +#: stock/serializers.py:1021 stock/serializers.py:1199 +#: stock/templates/stock/location.html:167 +#: stock/templates/stock/location.html:188 +#: stock/templates/stock/location.html:200 +#: stock/templates/stock/location_sidebar.html:7 +#: templates/InvenTree/search.html:155 templates/js/translated/part.js:1067 +#: templates/js/translated/search.js:172 templates/js/translated/stock.js:2851 +#: users/models.py:206 +msgid "Stock Items" +msgstr "" + +#: company/templates/company/supplier_part_sidebar.html:9 +msgid "Supplier Part Pricing" +msgstr "" + +#: company/views.py:32 +msgid "New Supplier" +msgstr "" + +#: company/views.py:38 +msgid "New Manufacturer" +msgstr "" + +#: company/views.py:43 templates/InvenTree/search.html:210 +#: templates/navbar.html:60 +msgid "Customers" +msgstr "" + +#: company/views.py:44 +msgid "New Customer" +msgstr "" + +#: company/views.py:52 +msgid "New Company" +msgstr "" + +#: generic/states/fields.py:118 +msgid "Custom status key" +msgstr "" + +#: generic/states/fields.py:119 +msgid "Additional status information for this item" +msgstr "" + +#: generic/states/tests.py:22 order/status_codes.py:13 +msgid "Placed" +msgstr "" + +#: importer/mixins.py:261 +msgid "Invalid export format" +msgstr "" + +#: importer/models.py:60 +msgid "Timestamp" +msgstr "" + +#: importer/models.py:65 +msgid "Data file to import" +msgstr "" + +#: importer/models.py:74 templates/js/translated/tables.js:558 +msgid "Columns" +msgstr "" + +#: importer/models.py:85 +msgid "Import status" +msgstr "" + +#: importer/models.py:95 +msgid "Field Defaults" +msgstr "" + +#: importer/models.py:102 +msgid "Field Overrides" +msgstr "" + +#: importer/models.py:109 +msgid "Field Filters" +msgstr "" + +#: importer/models.py:231 +msgid "Some required fields have not been mapped" +msgstr "" + +#: importer/models.py:388 +msgid "Column is already mapped to a database field" +msgstr "" + +#: importer/models.py:393 +msgid "Field is already mapped to a data column" +msgstr "" + +#: importer/models.py:402 +msgid "Column mapping must be linked to a valid import session" +msgstr "" + +#: importer/models.py:407 +msgid "Column does not exist in the data file" +msgstr "" + +#: importer/models.py:414 +msgid "Field does not exist in the target model" +msgstr "" + +#: importer/models.py:418 +msgid "Selected field is read-only" +msgstr "" + +#: importer/models.py:423 importer/models.py:494 +msgid "Import Session" +msgstr "" + +#: importer/models.py:427 +msgid "Field" +msgstr "" + +#: importer/models.py:429 +msgid "Column" +msgstr "" + +#: importer/models.py:498 +msgid "Row Index" +msgstr "" + +#: importer/models.py:501 +msgid "Original row data" +msgstr "" + +#: importer/models.py:504 part/models.py:3952 +msgid "Data" +msgstr "" + +#: importer/models.py:506 machine/models.py:110 +msgid "Errors" +msgstr "" + +#: importer/models.py:508 part/api.py:870 +msgid "Valid" +msgstr "" + +#: importer/operations.py:28 importer/operations.py:49 +msgid "Unsupported data file format" +msgstr "" + +#: importer/operations.py:40 +msgid "Failed to open data file" +msgstr "" + +#: importer/operations.py:51 +msgid "Invalid data file dimensions" +msgstr "" + +#: importer/serializers.py:91 +msgid "Invalid field defaults" +msgstr "" + +#: importer/serializers.py:104 +msgid "Invalid field overrides" +msgstr "" + +#: importer/serializers.py:117 +msgid "Invalid field filters" +msgstr "" + +#: importer/serializers.py:178 +msgid "Rows" +msgstr "" + +#: importer/serializers.py:179 +msgid "List of row IDs to accept" +msgstr "" + +#: importer/serializers.py:192 +msgid "No rows provided" +msgstr "" + +#: importer/serializers.py:196 +msgid "Row does not belong to this session" +msgstr "" + +#: importer/serializers.py:199 +msgid "Row contains invalid data" +msgstr "" + +#: importer/serializers.py:202 +msgid "Row has already been completed" +msgstr "" + +#: importer/status_codes.py:13 +msgid "Initializing" +msgstr "" + +#: importer/status_codes.py:18 +msgid "Mapping Columns" +msgstr "" + +#: importer/status_codes.py:21 +msgid "Importing Data" +msgstr "" + +#: importer/status_codes.py:24 +msgid "Processing Data" +msgstr "" + +#: importer/validators.py:21 +msgid "Data file exceeds maximum size limit" +msgstr "" + +#: importer/validators.py:26 +msgid "Data file contains no headers" +msgstr "" + +#: importer/validators.py:29 +msgid "Data file contains too many columns" +msgstr "" + +#: importer/validators.py:32 +msgid "Data file contains too many rows" +msgstr "" + +#: importer/validators.py:53 +msgid "Value must be a valid dictionary object" +msgstr "" + +#: machine/machine_types/label_printer.py:216 +msgid "Copies" +msgstr "" + +#: machine/machine_types/label_printer.py:217 +msgid "Number of copies to print for each label" +msgstr "" + +#: machine/machine_types/label_printer.py:232 +msgid "Connected" +msgstr "" + +#: machine/machine_types/label_printer.py:233 order/api.py:1397 +#: templates/js/translated/sales_order.js:1078 +msgid "Unknown" +msgstr "" + +#: machine/machine_types/label_printer.py:234 +msgid "Printing" +msgstr "" + +#: machine/machine_types/label_printer.py:235 +msgid "No media" +msgstr "" + +#: machine/machine_types/label_printer.py:236 +msgid "Paper jam" +msgstr "" + +#: machine/machine_types/label_printer.py:237 +msgid "Disconnected" +msgstr "" + +#: machine/machine_types/label_printer.py:244 +msgid "Label Printer" +msgstr "" + +#: machine/machine_types/label_printer.py:245 +msgid "Directly print labels for various items." +msgstr "" + +#: machine/machine_types/label_printer.py:251 +msgid "Printer Location" +msgstr "" + +#: machine/machine_types/label_printer.py:252 +msgid "Scope the printer to a specific location" +msgstr "" + +#: machine/models.py:25 +msgid "Name of machine" +msgstr "" + +#: machine/models.py:29 +msgid "Machine Type" +msgstr "" + +#: machine/models.py:29 +msgid "Type of machine" +msgstr "" + +#: machine/models.py:34 machine/models.py:146 +msgid "Driver" +msgstr "" + +#: machine/models.py:35 +msgid "Driver used for the machine" +msgstr "" + +#: machine/models.py:39 +msgid "Machines can be disabled" +msgstr "" + +#: machine/models.py:95 +msgid "Driver available" +msgstr "" + +#: machine/models.py:100 +msgid "No errors" +msgstr "" + +#: machine/models.py:105 +msgid "Initialized" +msgstr "" + +#: machine/models.py:117 +msgid "Machine status" +msgstr "" + +#: machine/models.py:145 +msgid "Machine" +msgstr "" + +#: machine/models.py:151 +msgid "Machine Config" +msgstr "" + +#: machine/models.py:156 +msgid "Config type" +msgstr "" + +#: order/admin.py:30 order/models.py:90 +#: report/templates/report/inventree_purchase_order_report.html:31 +#: report/templates/report/inventree_sales_order_report.html:31 +#: templates/js/translated/order.js:352 +#: templates/js/translated/purchase_order.js:2195 +#: templates/js/translated/sales_order.js:1883 +msgid "Total Price" +msgstr "" + +#: order/api.py:80 order/api.py:151 order/serializers.py:94 +#: order/templates/order/order_base.html:123 +#: order/templates/order/return_order_base.html:116 +#: order/templates/order/sales_order_base.html:125 +msgid "Order Status" +msgstr "" + +#: order/api.py:88 order/templates/order/order_base.html:111 +#: order/templates/order/return_order_base.html:104 +#: order/templates/order/sales_order_base.html:113 +msgid "Order Reference" +msgstr "" + +#: order/api.py:116 templates/js/translated/table_filters.js:93 +#: templates/js/translated/table_filters.js:625 +#: templates/js/translated/table_filters.js:651 +#: templates/js/translated/table_filters.js:666 +msgid "Outstanding" +msgstr "" + +#: order/api.py:132 +msgid "Has Project Code" +msgstr "" + +#: order/api.py:155 templates/js/translated/table_filters.js:201 +#: templates/js/translated/table_filters.js:791 +msgid "Has Pricing" +msgstr "" + +#: order/api.py:230 +msgid "No matching purchase order found" +msgstr "" + +#: order/api.py:423 order/api.py:757 order/models.py:1477 order/models.py:1591 +#: order/models.py:1642 order/models.py:1757 order/models.py:1916 +#: order/models.py:2376 order/models.py:2432 +#: templates/js/translated/sales_order.js:1524 +msgid "Order" +msgstr "" + +#: order/api.py:427 order/api.py:778 +msgid "Order Complete" +msgstr "" + +#: order/api.py:450 +msgid "Order Pending" +msgstr "" + +#: order/api.py:1391 order/models.py:380 order/models.py:1478 +#: order/models.py:1592 order/templates/order/order_base.html:9 +#: order/templates/order/order_base.html:18 +#: report/templates/report/inventree_purchase_order_report.html:14 +#: stock/serializers.py:121 stock/templates/stock/item_base.html:172 +#: templates/email/overdue_purchase_order.html:15 +#: templates/js/translated/part.js:1752 templates/js/translated/pricing.js:804 +#: templates/js/translated/purchase_order.js:168 +#: templates/js/translated/purchase_order.js:753 +#: templates/js/translated/purchase_order.js:1743 +#: templates/js/translated/stock.js:2346 templates/js/translated/stock.js:2992 +msgid "Purchase Order" +msgstr "" + +#: order/api.py:1395 order/models.py:2084 order/models.py:2377 +#: order/models.py:2433 order/templates/order/return_order_base.html:9 +#: order/templates/order/return_order_base.html:28 +#: report/templates/report/inventree_return_order_report.html:13 +#: templates/js/translated/return_order.js:280 +#: templates/js/translated/stock.js:3026 +msgid "Return Order" +msgstr "" + +#: order/models.py:91 +msgid "Total price for this order" +msgstr "" + +#: order/models.py:96 order/serializers.py:72 +msgid "Order Currency" +msgstr "" + +#: order/models.py:99 order/serializers.py:73 +msgid "Currency for this order (leave blank to use company default)" +msgstr "" + +#: order/models.py:247 +msgid "Contact does not match selected company" +msgstr "" + +#: order/models.py:290 +msgid "Order description (optional)" +msgstr "" + +#: order/models.py:299 +msgid "Select project code for this order" +msgstr "" + +#: order/models.py:303 order/models.py:1378 order/models.py:1810 +msgid "Link to external page" +msgstr "" + +#: order/models.py:311 +msgid "Expected date for order delivery. Order will be overdue after this date." +msgstr "" + +#: order/models.py:325 +msgid "Created By" +msgstr "" + +#: order/models.py:333 +msgid "User or group responsible for this order" +msgstr "" + +#: order/models.py:344 +msgid "Point of contact for this order" +msgstr "" + +#: order/models.py:354 +msgid "Company address for this order" +msgstr "" + +#: order/models.py:469 order/models.py:980 +msgid "Order reference" +msgstr "" + +#: order/models.py:478 +msgid "Purchase order status" +msgstr "" + +#: order/models.py:493 +msgid "Company from which the items are being ordered" +msgstr "" + +#: order/models.py:504 order/templates/order/order_base.html:153 +#: templates/js/translated/purchase_order.js:1772 +msgid "Supplier Reference" +msgstr "" + +#: order/models.py:505 +msgid "Supplier order reference code" +msgstr "" + +#: order/models.py:514 +msgid "received by" +msgstr "" + +#: order/models.py:520 order/models.py:2166 +msgid "Issue Date" +msgstr "" + +#: order/models.py:521 order/models.py:2167 +msgid "Date order was issued" +msgstr "" + +#: order/models.py:528 order/models.py:2174 +msgid "Date order was completed" +msgstr "" + +#: order/models.py:572 +msgid "Part supplier must match PO supplier" +msgstr "" + +#: order/models.py:807 +msgid "Quantity must be a positive number" +msgstr "" + +#: order/models.py:992 +msgid "Company to which the items are being sold" +msgstr "" + +#: order/models.py:1004 +msgid "Sales order status" +msgstr "" + +#: order/models.py:1015 order/models.py:2159 +msgid "Customer Reference " +msgstr "" + +#: order/models.py:1016 order/models.py:2160 +msgid "Customer order reference code" +msgstr "" + +#: order/models.py:1020 order/models.py:1764 +#: templates/js/translated/sales_order.js:879 +#: templates/js/translated/sales_order.js:1060 +msgid "Shipment Date" +msgstr "" + +#: order/models.py:1029 +msgid "shipped by" +msgstr "" + +#: order/models.py:1070 +msgid "Order is already complete" +msgstr "" + +#: order/models.py:1073 +msgid "Order is already cancelled" +msgstr "" + +#: order/models.py:1077 +msgid "Only an open order can be marked as complete" +msgstr "" + +#: order/models.py:1081 +msgid "Order cannot be completed as there are incomplete shipments" +msgstr "" + +#: order/models.py:1086 +msgid "Order cannot be completed as there are incomplete line items" +msgstr "" + +#: order/models.py:1350 +msgid "Item quantity" +msgstr "" + +#: order/models.py:1367 +msgid "Line item reference" +msgstr "" + +#: order/models.py:1374 +msgid "Line item notes" +msgstr "" + +#: order/models.py:1386 +msgid "Target date for this line item (leave blank to use the target date from the order)" +msgstr "" + +#: order/models.py:1407 +msgid "Line item description (optional)" +msgstr "" + +#: order/models.py:1413 +msgid "Context" +msgstr "" + +#: order/models.py:1414 +msgid "Additional context for this line" +msgstr "" + +#: order/models.py:1424 +msgid "Unit price" +msgstr "" + +#: order/models.py:1438 +msgid "Purchase Order Line Item" +msgstr "" + +#: order/models.py:1462 +msgid "Supplier part must match supplier" +msgstr "" + +#: order/models.py:1469 +msgid "deleted" +msgstr "" + +#: order/models.py:1497 +msgid "Supplier part" +msgstr "" + +#: order/models.py:1504 order/templates/order/order_base.html:201 +#: templates/js/translated/part.js:1876 templates/js/translated/part.js:1908 +#: templates/js/translated/purchase_order.js:1369 +#: templates/js/translated/purchase_order.js:2239 +#: templates/js/translated/return_order.js:762 +#: templates/js/translated/table_filters.js:119 +#: templates/js/translated/table_filters.js:605 +msgid "Received" +msgstr "" + +#: order/models.py:1505 +msgid "Number of items received" +msgstr "" + +#: order/models.py:1513 stock/models.py:963 stock/serializers.py:617 +#: stock/templates/stock/item_base.html:179 +#: templates/js/translated/stock.js:2397 +msgid "Purchase Price" +msgstr "" + +#: order/models.py:1514 +msgid "Unit purchase price" +msgstr "" + +#: order/models.py:1529 +msgid "Where does the Purchaser want this item to be stored?" +msgstr "" + +#: order/models.py:1580 +msgid "Purchase Order Extra Line" +msgstr "" + +#: order/models.py:1609 +msgid "Sales Order Line Item" +msgstr "" + +#: order/models.py:1630 +msgid "Virtual part cannot be assigned to a sales order" +msgstr "" + +#: order/models.py:1635 +msgid "Only salable parts can be assigned to a sales order" +msgstr "" + +#: order/models.py:1661 part/templates/part/part_pricing.html:107 +#: part/templates/part/prices.html:139 templates/js/translated/pricing.js:957 +msgid "Sale Price" +msgstr "" + +#: order/models.py:1662 +msgid "Unit sale price" +msgstr "" + +#: order/models.py:1671 order/status_codes.py:48 +#: templates/js/translated/sales_order.js:1559 +#: templates/js/translated/sales_order.js:1680 +#: templates/js/translated/sales_order.js:1993 +msgid "Shipped" +msgstr "" + +#: order/models.py:1672 +msgid "Shipped quantity" +msgstr "" + +#: order/models.py:1744 +msgid "Sales Order Shipment" +msgstr "" + +#: order/models.py:1765 +msgid "Date of shipment" +msgstr "" + +#: order/models.py:1771 templates/js/translated/sales_order.js:1072 +msgid "Delivery Date" +msgstr "" + +#: order/models.py:1772 +msgid "Date of delivery of shipment" +msgstr "" + +#: order/models.py:1780 +msgid "Checked By" +msgstr "" + +#: order/models.py:1781 +msgid "User who checked this shipment" +msgstr "" + +#: order/models.py:1788 order/models.py:2011 order/serializers.py:1479 +#: order/serializers.py:1597 templates/js/translated/model_renderers.js:455 +msgid "Shipment" +msgstr "" + +#: order/models.py:1789 +msgid "Shipment number" +msgstr "" + +#: order/models.py:1797 +msgid "Tracking Number" +msgstr "" + +#: order/models.py:1798 +msgid "Shipment tracking information" +msgstr "" + +#: order/models.py:1805 +msgid "Invoice Number" +msgstr "" + +#: order/models.py:1806 +msgid "Reference number for associated invoice" +msgstr "" + +#: order/models.py:1826 +msgid "Shipment has already been sent" +msgstr "" + +#: order/models.py:1829 +msgid "Shipment has no allocated stock items" +msgstr "" + +#: order/models.py:1905 +msgid "Sales Order Extra Line" +msgstr "" + +#: order/models.py:1934 +msgid "Sales Order Allocation" +msgstr "" + +#: order/models.py:1957 order/models.py:1959 +msgid "Stock item has not been assigned" +msgstr "" + +#: order/models.py:1966 +msgid "Cannot allocate stock item to a line with a different part" +msgstr "" + +#: order/models.py:1969 +msgid "Cannot allocate stock to a line without a part" +msgstr "" + +#: order/models.py:1972 +msgid "Allocation quantity cannot exceed stock quantity" +msgstr "" + +#: order/models.py:1991 order/serializers.py:1349 +msgid "Quantity must be 1 for serialized stock item" +msgstr "" + +#: order/models.py:1994 +msgid "Sales order does not match shipment" +msgstr "" + +#: order/models.py:1995 plugin/base/barcodes/api.py:523 +msgid "Shipment does not match sales order" +msgstr "" + +#: order/models.py:2003 +msgid "Line" +msgstr "" + +#: order/models.py:2012 +msgid "Sales order shipment reference" +msgstr "" + +#: order/models.py:2025 order/models.py:2384 +#: templates/js/translated/return_order.js:720 +msgid "Item" +msgstr "" + +#: order/models.py:2026 +msgid "Select stock item to allocate" +msgstr "" + +#: order/models.py:2035 +msgid "Enter stock allocation quantity" +msgstr "" + +#: order/models.py:2129 +msgid "Return Order reference" +msgstr "" + +#: order/models.py:2141 +msgid "Company from which items are being returned" +msgstr "" + +#: order/models.py:2153 +msgid "Return order status" +msgstr "" + +#: order/models.py:2355 +msgid "Return Order Line Item" +msgstr "" + +#: order/models.py:2369 +msgid "Only serialized items can be assigned to a Return Order" +msgstr "" + +#: order/models.py:2385 +msgid "Select item to return from customer" +msgstr "" + +#: order/models.py:2391 +msgid "Received Date" +msgstr "" + +#: order/models.py:2392 +msgid "The date this this return item was received" +msgstr "" + +#: order/models.py:2403 templates/js/translated/return_order.js:731 +#: templates/js/translated/table_filters.js:122 +msgid "Outcome" +msgstr "" + +#: order/models.py:2404 +msgid "Outcome for this line item" +msgstr "" + +#: order/models.py:2411 +msgid "Cost associated with return or repair for this line item" +msgstr "" + +#: order/models.py:2421 +msgid "Return Order Extra Line" +msgstr "" + +#: order/serializers.py:87 +msgid "Completed Lines" +msgstr "" + +#: order/serializers.py:290 stock/admin.py:196 +msgid "Supplier Name" +msgstr "" + +#: order/serializers.py:332 +msgid "Order cannot be cancelled" +msgstr "" + +#: order/serializers.py:347 order/serializers.py:1370 +msgid "Allow order to be closed with incomplete line items" +msgstr "" + +#: order/serializers.py:357 order/serializers.py:1380 +msgid "Order has incomplete line items" +msgstr "" + +#: order/serializers.py:507 +msgid "Order is not open" +msgstr "" + +#: order/serializers.py:528 +msgid "Auto Pricing" +msgstr "" + +#: order/serializers.py:530 +msgid "Automatically calculate purchase price based on supplier part data" +msgstr "" + +#: order/serializers.py:540 +msgid "Purchase price currency" +msgstr "" + +#: order/serializers.py:546 +msgid "Merge Items" +msgstr "" + +#: order/serializers.py:548 +msgid "Merge items with the same part, destination and target date into one line item" +msgstr "" + +#: order/serializers.py:561 part/models.py:1045 part/serializers.py:354 +msgid "Internal Part Number" +msgstr "" + +#: order/serializers.py:569 +msgid "Internal Part Name" +msgstr "" + +#: order/serializers.py:585 +msgid "Supplier part must be specified" +msgstr "" + +#: order/serializers.py:588 +msgid "Purchase order must be specified" +msgstr "" + +#: order/serializers.py:596 +msgid "Supplier must match purchase order" +msgstr "" + +#: order/serializers.py:597 +msgid "Purchase order must match supplier" +msgstr "" + +#: order/serializers.py:640 order/serializers.py:1450 +msgid "Line Item" +msgstr "" + +#: order/serializers.py:646 +msgid "Line item does not match purchase order" +msgstr "" + +#: order/serializers.py:656 order/serializers.py:779 order/serializers.py:1798 +msgid "Select destination location for received items" +msgstr "" + +#: order/serializers.py:672 templates/js/translated/purchase_order.js:1130 +#: templates/js/translated/stock.js:1200 +msgid "Enter batch code for incoming stock items" +msgstr "" + +#: order/serializers.py:680 templates/js/translated/purchase_order.js:1155 +msgid "Enter serial numbers for incoming stock items" +msgstr "" + +#: order/serializers.py:692 +msgid "Override packaging information for incoming stock items" +msgstr "" + +#: order/serializers.py:700 +msgid "Additional note for incoming stock items" +msgstr "" + +#: order/serializers.py:707 templates/js/translated/barcode.js:52 +msgid "Barcode" +msgstr "" + +#: order/serializers.py:708 +msgid "Scanned barcode" +msgstr "" + +#: order/serializers.py:724 +msgid "Barcode is already in use" +msgstr "" + +#: order/serializers.py:747 +msgid "An integer quantity must be provided for trackable parts" +msgstr "" + +#: order/serializers.py:795 order/serializers.py:1814 +msgid "Line items must be provided" +msgstr "" + +#: order/serializers.py:811 +msgid "Destination location must be specified" +msgstr "" + +#: order/serializers.py:822 +msgid "Supplied barcode values must be unique" +msgstr "" + +#: order/serializers.py:1191 +msgid "Sale price currency" +msgstr "" + +#: order/serializers.py:1252 +msgid "No shipment details provided" +msgstr "" + +#: order/serializers.py:1313 order/serializers.py:1459 +msgid "Line item is not associated with this order" +msgstr "" + +#: order/serializers.py:1332 +msgid "Quantity must be positive" +msgstr "" + +#: order/serializers.py:1469 +msgid "Enter serial numbers to allocate" +msgstr "" + +#: order/serializers.py:1491 order/serializers.py:1605 +msgid "Shipment has already been shipped" +msgstr "" + +#: order/serializers.py:1494 order/serializers.py:1608 +msgid "Shipment is not associated with this order" +msgstr "" + +#: order/serializers.py:1549 +msgid "No match found for the following serial numbers" +msgstr "" + +#: order/serializers.py:1556 +msgid "The following serial numbers are unavailable" +msgstr "" + +#: order/serializers.py:1768 +msgid "Return order line item" +msgstr "" + +#: order/serializers.py:1774 +msgid "Line item does not match return order" +msgstr "" + +#: order/serializers.py:1777 +msgid "Line item has already been received" +msgstr "" + +#: order/serializers.py:1806 +msgid "Items can only be received against orders which are in progress" +msgstr "" + +#: order/serializers.py:1889 +msgid "Line price currency" +msgstr "" + +#: order/status_codes.py:17 order/status_codes.py:52 stock/status_codes.py:16 +msgid "Lost" +msgstr "" + +#: order/status_codes.py:18 order/status_codes.py:53 stock/status_codes.py:24 +msgid "Returned" +msgstr "" + +#: order/status_codes.py:45 order/status_codes.py:77 +msgid "In Progress" +msgstr "" + +#: order/status_codes.py:101 +msgid "Return" +msgstr "" + +#: order/status_codes.py:104 +msgid "Repair" +msgstr "" + +#: order/status_codes.py:107 +msgid "Replace" +msgstr "" + +#: order/status_codes.py:110 +msgid "Refund" +msgstr "" + +#: order/status_codes.py:113 +msgid "Reject" +msgstr "" + +#: order/tasks.py:25 +msgid "Overdue Purchase Order" +msgstr "" + +#: order/tasks.py:30 +#, python-brace-format +msgid "Purchase order {po} is now overdue" +msgstr "" + +#: order/tasks.py:75 +msgid "Overdue Sales Order" +msgstr "" + +#: order/tasks.py:80 +#, python-brace-format +msgid "Sales order {so} is now overdue" +msgstr "" + +#: order/templates/order/order_base.html:51 +msgid "Print purchase order report" +msgstr "" + +#: order/templates/order/order_base.html:53 +#: order/templates/order/return_order_base.html:62 +#: order/templates/order/sales_order_base.html:62 +msgid "Export order to file" +msgstr "" + +#: order/templates/order/order_base.html:59 +#: order/templates/order/return_order_base.html:72 +#: order/templates/order/sales_order_base.html:71 +msgid "Order actions" +msgstr "" + +#: order/templates/order/order_base.html:64 +#: order/templates/order/return_order_base.html:76 +#: order/templates/order/sales_order_base.html:75 +msgid "Edit order" +msgstr "" + +#: order/templates/order/order_base.html:68 +msgid "Duplicate order" +msgstr "" + +#: order/templates/order/order_base.html:73 +#: order/templates/order/return_order_base.html:78 +#: order/templates/order/sales_order_base.html:77 +msgid "Hold order" +msgstr "" + +#: order/templates/order/order_base.html:78 +#: order/templates/order/return_order_base.html:81 +#: order/templates/order/sales_order_base.html:80 +msgid "Cancel order" +msgstr "" + +#: order/templates/order/order_base.html:84 +#: order/templates/order/order_base.html:85 +#: order/templates/order/return_order_base.html:85 +#: order/templates/order/return_order_base.html:86 +#: order/templates/order/sales_order_base.html:86 +#: order/templates/order/sales_order_base.html:87 +msgid "Issue Order" +msgstr "" + +#: order/templates/order/order_base.html:88 +#: order/templates/order/return_order_base.html:89 +msgid "Mark order as complete" +msgstr "" + +#: order/templates/order/order_base.html:89 +#: order/templates/order/return_order_base.html:90 +#: order/templates/order/sales_order_base.html:100 +msgid "Complete Order" +msgstr "" + +#: order/templates/order/order_base.html:96 +msgid "Supplier part thumbnail" +msgstr "" + +#: order/templates/order/order_base.html:116 +#: order/templates/order/return_order_base.html:109 +#: order/templates/order/sales_order_base.html:118 +msgid "Order Description" +msgstr "" + +#: order/templates/order/order_base.html:146 +msgid "No suppplier information available" +msgstr "" + +#: order/templates/order/order_base.html:159 +#: order/templates/order/sales_order_base.html:164 +msgid "Completed Line Items" +msgstr "" + +#: order/templates/order/order_base.html:165 +#: order/templates/order/sales_order_base.html:170 +#: order/templates/order/sales_order_base.html:180 +msgid "Incomplete" +msgstr "" + +#: order/templates/order/order_base.html:184 +#: order/templates/order/return_order_base.html:160 +#: report/templates/report/inventree_build_order_report.html:121 +msgid "Issued" +msgstr "" + +#: order/templates/order/order_base.html:229 +msgid "Total cost" +msgstr "" + +#: order/templates/order/order_base.html:233 +#: order/templates/order/return_order_base.html:202 +#: order/templates/order/sales_order_base.html:246 +msgid "Total cost could not be calculated" +msgstr "" + +#: order/templates/order/order_base.html:335 +msgid "Purchase Order QR Code" +msgstr "" + +#: order/templates/order/order_base.html:347 +msgid "Link Barcode to Purchase Order" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:9 +#: part/templates/part/import_wizard/ajax_match_fields.html:9 +#: part/templates/part/import_wizard/match_fields.html:9 +#: templates/patterns/wizard/match_fields.html:8 +msgid "Missing selections for the following required columns" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:20 +#: part/templates/part/import_wizard/ajax_match_fields.html:20 +#: part/templates/part/import_wizard/match_fields.html:20 +#: templates/patterns/wizard/match_fields.html:19 +msgid "Duplicate selections found, see below. Fix them then retry submitting." +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:29 +#: order/templates/order/order_wizard/match_parts.html:21 +#: part/templates/part/import_wizard/match_fields.html:29 +#: part/templates/part/import_wizard/match_references.html:21 +#: templates/patterns/wizard/match_fields.html:28 +msgid "Submit Selections" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:35 +#: part/templates/part/import_wizard/ajax_match_fields.html:28 +#: part/templates/part/import_wizard/match_fields.html:35 +#: templates/patterns/wizard/match_fields.html:34 +msgid "File Fields" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:42 +#: part/templates/part/import_wizard/ajax_match_fields.html:35 +#: part/templates/part/import_wizard/match_fields.html:42 +#: templates/patterns/wizard/match_fields.html:41 +msgid "Remove column" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:60 +#: part/templates/part/import_wizard/ajax_match_fields.html:53 +#: part/templates/part/import_wizard/match_fields.html:60 +#: templates/patterns/wizard/match_fields.html:59 +msgid "Duplicate selection" +msgstr "" + +#: order/templates/order/order_wizard/match_fields.html:71 +#: order/templates/order/order_wizard/match_parts.html:52 +#: part/templates/part/import_wizard/ajax_match_fields.html:64 +#: part/templates/part/import_wizard/ajax_match_references.html:42 +#: part/templates/part/import_wizard/match_fields.html:71 +#: part/templates/part/import_wizard/match_references.html:49 +#: templates/js/translated/bom.js:133 templates/js/translated/build.js:533 +#: templates/js/translated/build.js:1805 +#: templates/js/translated/purchase_order.js:696 +#: templates/js/translated/purchase_order.js:1288 +#: templates/js/translated/return_order.js:505 +#: templates/js/translated/sales_order.js:1145 +#: templates/js/translated/stock.js:720 templates/js/translated/stock.js:889 +#: templates/patterns/wizard/match_fields.html:70 +msgid "Remove row" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:12 +#: part/templates/part/import_wizard/ajax_match_references.html:12 +#: part/templates/part/import_wizard/match_references.html:12 +msgid "Errors exist in the submitted data" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:28 +#: part/templates/part/import_wizard/ajax_match_references.html:21 +#: part/templates/part/import_wizard/match_references.html:28 +msgid "Row" +msgstr "" + +#: order/templates/order/order_wizard/match_parts.html:29 +msgid "Select Supplier Part" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:8 +msgid "Return to Orders" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:13 +msgid "Upload File for Purchase Order" +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:14 +msgid "Order is already processed. Files cannot be uploaded." +msgstr "" + +#: order/templates/order/order_wizard/po_upload.html:27 +#: part/templates/part/import_wizard/ajax_part_upload.html:10 +#: part/templates/part/import_wizard/part_upload.html:26 +#: templates/patterns/wizard/upload.html:13 +#, python-format +msgid "Step %(step)s of %(count)s" +msgstr "" + +#: order/templates/order/po_sidebar.html:7 +msgid "Received Stock" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:18 +msgid "Purchase Order Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:27 +#: order/templates/order/return_order_detail.html:24 +#: order/templates/order/sales_order_detail.html:24 +#: templates/js/translated/purchase_order.js:414 +#: templates/js/translated/return_order.js:458 +#: templates/js/translated/sales_order.js:237 +msgid "Add Line Item" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:31 +#: order/templates/order/purchase_order_detail.html:32 +#: order/templates/order/return_order_detail.html:28 +#: order/templates/order/return_order_detail.html:29 +msgid "Receive Line Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:50 +#: order/templates/order/return_order_detail.html:45 +#: order/templates/order/sales_order_detail.html:41 +msgid "Extra Lines" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:56 +#: order/templates/order/return_order_detail.html:51 +#: order/templates/order/sales_order_detail.html:47 +msgid "Add Extra Line" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:74 +msgid "Received Items" +msgstr "" + +#: order/templates/order/purchase_order_detail.html:99 +#: order/templates/order/return_order_detail.html:85 +#: order/templates/order/sales_order_detail.html:139 +msgid "Order Notes" +msgstr "" + +#: order/templates/order/return_order_base.html:18 +#: order/templates/order/sales_order_base.html:18 +msgid "Customer logo thumbnail" +msgstr "" + +#: order/templates/order/return_order_base.html:60 +msgid "Print return order report" +msgstr "" + +#: order/templates/order/return_order_base.html:64 +#: order/templates/order/sales_order_base.html:64 +msgid "Print packing list" +msgstr "" + +#: order/templates/order/return_order_base.html:141 +#: order/templates/order/sales_order_base.html:158 +#: templates/js/translated/return_order.js:308 +#: templates/js/translated/sales_order.js:833 +msgid "Customer Reference" +msgstr "" + +#: order/templates/order/return_order_base.html:198 +#: order/templates/order/sales_order_base.html:242 +#: part/templates/part/part_pricing.html:32 +#: part/templates/part/part_pricing.html:58 +#: part/templates/part/part_pricing.html:99 +#: part/templates/part/part_pricing.html:114 +#: templates/js/translated/part.js:1079 +#: templates/js/translated/purchase_order.js:1822 +#: templates/js/translated/return_order.js:380 +#: templates/js/translated/sales_order.js:891 +msgid "Total Cost" +msgstr "" + +#: order/templates/order/return_order_base.html:273 +msgid "Return Order QR Code" +msgstr "" + +#: order/templates/order/return_order_base.html:285 +msgid "Link Barcode to Return Order" +msgstr "" + +#: order/templates/order/return_order_sidebar.html:5 +msgid "Order Details" +msgstr "" + +#: order/templates/order/sales_order_base.html:60 +msgid "Print sales order report" +msgstr "" + +#: order/templates/order/sales_order_base.html:91 +#: order/templates/order/sales_order_base.html:92 +msgid "Ship Items" +msgstr "" + +#: order/templates/order/sales_order_base.html:95 +#: order/templates/order/sales_order_base.html:96 +msgid "Mark As Shipped" +msgstr "" + +#: order/templates/order/sales_order_base.html:99 +#: templates/js/translated/sales_order.js:536 +msgid "Complete Sales Order" +msgstr "" + +#: order/templates/order/sales_order_base.html:138 +msgid "This Sales Order has not been fully allocated" +msgstr "" + +#: order/templates/order/sales_order_base.html:176 +#: order/templates/order/sales_order_detail.html:99 +#: order/templates/order/so_sidebar.html:11 +msgid "Completed Shipments" +msgstr "" + +#: order/templates/order/sales_order_base.html:339 +msgid "Sales Order QR Code" +msgstr "" + +#: order/templates/order/sales_order_base.html:351 +msgid "Link Barcode to Sales Order" +msgstr "" + +#: order/templates/order/sales_order_detail.html:18 +msgid "Sales Order Items" +msgstr "" + +#: order/templates/order/sales_order_detail.html:67 +#: order/templates/order/so_sidebar.html:8 templates/InvenTree/index.html:284 +msgid "Pending Shipments" +msgstr "" + +#: order/templates/order/sales_order_detail.html:71 +#: templates/js/translated/bom.js:1277 templates/js/translated/build.js:1066 +#: templates/js/translated/filters.js:299 +msgid "Actions" +msgstr "" + +#: order/templates/order/sales_order_detail.html:80 +msgid "New Shipment" +msgstr "" + +#: order/views.py:120 +msgid "Match Supplier Parts" +msgstr "" + +#: order/views.py:406 +msgid "Sales order not found" +msgstr "" + +#: order/views.py:412 +msgid "Price not found" +msgstr "" + +#: order/views.py:415 +#, python-brace-format +msgid "Updated {part} unit-price to {price}" +msgstr "" + +#: order/views.py:421 +#, python-brace-format +msgid "Updated {part} unit-price to {price} and quantity to {qty}" +msgstr "" + +#: part/admin.py:48 part/models.py:1044 part/serializers.py:906 +#: part/templates/part/part_base.html:276 +#: report/templates/report/inventree_stock_location_report.html:103 +#: templates/js/translated/part.js:1233 templates/js/translated/part.js:2347 +#: templates/js/translated/stock.js:2122 +msgid "IPN" +msgstr "" + +#: part/admin.py:50 part/models.py:1053 part/templates/part/part_base.html:293 +#: report/models.py:161 templates/js/translated/part.js:1238 +#: templates/js/translated/part.js:2353 +msgid "Revision" +msgstr "" + +#: part/admin.py:53 part/admin.py:319 part/models.py:1026 +#: part/templates/part/category.html:91 part/templates/part/part_base.html:314 +msgid "Keywords" +msgstr "" + +#: part/admin.py:60 +msgid "Part Image" +msgstr "" + +#: part/admin.py:63 part/admin.py:302 part/stocktake.py:221 +msgid "Category ID" +msgstr "" + +#: part/admin.py:67 part/admin.py:304 part/serializers.py:891 +#: part/stocktake.py:222 +msgid "Category Name" +msgstr "" + +#: part/admin.py:71 part/admin.py:316 +msgid "Default Location ID" +msgstr "" + +#: part/admin.py:76 +msgid "Default Supplier ID" +msgstr "" + +#: part/admin.py:81 part/models.py:1012 part/templates/part/part_base.html:177 +msgid "Variant Of" +msgstr "" + +#: part/admin.py:84 part/models.py:1150 part/templates/part/part_base.html:203 +msgid "Minimum Stock" +msgstr "" + +#: part/admin.py:138 part/templates/part/part_sidebar.html:27 +msgid "Used In" +msgstr "" + +#: part/admin.py:150 part/serializers.py:916 +#: part/templates/part/part_base.html:248 stock/admin.py:236 +#: templates/js/translated/part.js:717 templates/js/translated/part.js:2159 +msgid "Building" +msgstr "" + +#: part/admin.py:155 part/models.py:3201 part/models.py:3215 +#: templates/js/translated/part.js:976 +msgid "Minimum Cost" +msgstr "" + +#: part/admin.py:158 part/models.py:3208 part/models.py:3222 +#: templates/js/translated/part.js:986 +msgid "Maximum Cost" +msgstr "" + +#: part/admin.py:308 part/admin.py:387 stock/admin.py:57 stock/admin.py:216 +msgid "Parent ID" +msgstr "" + +#: part/admin.py:312 part/admin.py:394 stock/admin.py:61 +msgid "Parent Name" +msgstr "" + +#: part/admin.py:320 part/templates/part/category.html:85 +#: part/templates/part/category.html:98 +msgid "Category Path" +msgstr "" + +#: part/admin.py:325 part/models.py:420 part/serializers.py:130 +#: part/serializers.py:290 part/serializers.py:426 +#: part/templates/part/cat_link.html:3 part/templates/part/category.html:20 +#: part/templates/part/category.html:138 part/templates/part/category.html:158 +#: part/templates/part/category_sidebar.html:9 +#: templates/InvenTree/index.html:36 templates/InvenTree/search.html:84 +#: templates/InvenTree/settings/sidebar.html:47 +#: templates/js/translated/part.js:2822 templates/js/translated/search.js:130 +#: templates/navbar.html:24 users/models.py:203 +msgid "Parts" +msgstr "" + +#: part/admin.py:378 +msgid "BOM Level" +msgstr "" + +#: part/admin.py:381 +msgid "BOM Item ID" +msgstr "" + +#: part/admin.py:391 +msgid "Parent IPN" +msgstr "" + +#: part/admin.py:405 +msgid "Part Revision" +msgstr "" + +#: part/admin.py:418 part/serializers.py:1365 +#: templates/js/translated/pricing.js:358 +#: templates/js/translated/pricing.js:1024 +msgid "Minimum Price" +msgstr "" + +#: part/admin.py:423 part/serializers.py:1380 +#: templates/js/translated/pricing.js:353 +#: templates/js/translated/pricing.js:1032 +msgid "Maximum Price" +msgstr "" + +#: part/api.py:104 +msgid "Starred" +msgstr "" + +#: part/api.py:106 +msgid "Filter by starred categories" +msgstr "" + +#: part/api.py:123 stock/api.py:310 +msgid "Depth" +msgstr "" + +#: part/api.py:123 +msgid "Filter by category depth" +msgstr "" + +#: part/api.py:141 stock/api.py:328 +msgid "Top Level" +msgstr "" + +#: part/api.py:143 +msgid "Filter by top-level categories" +msgstr "" + +#: part/api.py:156 stock/api.py:343 +msgid "Cascade" +msgstr "" + +#: part/api.py:158 +msgid "Include sub-categories in filtered results" +msgstr "" + +#: part/api.py:178 templates/js/translated/part.js:311 +msgid "Parent" +msgstr "" + +#: part/api.py:180 +msgid "Filter by parent category" +msgstr "" + +#: part/api.py:213 +msgid "Exclude Tree" +msgstr "" + +#: part/api.py:215 +msgid "Exclude sub-categories under the specified category" +msgstr "" + +#: part/api.py:440 +msgid "Has Results" +msgstr "" + +#: part/api.py:605 +msgid "Incoming Purchase Order" +msgstr "" + +#: part/api.py:623 +msgid "Outgoing Sales Order" +msgstr "" + +#: part/api.py:639 +msgid "Stock produced by Build Order" +msgstr "" + +#: part/api.py:723 +msgid "Stock required for Build Order" +msgstr "" + +#: part/api.py:871 +msgid "Validate entire Bill of Materials" +msgstr "" + +#: part/api.py:877 +msgid "This option must be selected" +msgstr "" + +#: part/api.py:913 +msgid "Is Revision" +msgstr "" + +#: part/api.py:923 +msgid "Has Revisions" +msgstr "" + +#: part/api.py:1114 +msgid "BOM Valid" +msgstr "" + +#: part/api.py:1520 part/models.py:1036 part/models.py:3488 part/models.py:4047 +#: part/serializers.py:441 part/serializers.py:1221 +#: part/templates/part/part_base.html:267 stock/api.py:780 +#: templates/InvenTree/settings/settings_staff_js.html:300 +#: templates/js/translated/notification.js:60 +#: templates/js/translated/part.js:2383 +msgid "Category" +msgstr "" + +#: part/api.py:1754 +msgid "Assembly part is testable" +msgstr "" + +#: part/api.py:1763 +msgid "Component part is testable" +msgstr "" + +#: part/api.py:1814 +msgid "Uses" +msgstr "" + +#: part/bom.py:183 part/models.py:108 part/models.py:1089 +#: part/templates/part/category.html:113 part/templates/part/part_base.html:383 +#: templates/js/translated/part.js:2397 +msgid "Default Location" +msgstr "" + +#: part/bom.py:184 part/serializers.py:924 +#: templates/email/low_stock_notification.html:16 +msgid "Total Stock" +msgstr "" + +#: part/forms.py:49 +msgid "Input quantity for price calculation" +msgstr "" + +#: part/models.py:89 part/models.py:4048 part/templates/part/category.html:16 +#: part/templates/part/part_app_base.html:10 +msgid "Part Category" +msgstr "" + +#: part/models.py:90 part/templates/part/category.html:133 +#: templates/InvenTree/search.html:97 templates/js/translated/search.js:158 +#: users/models.py:202 +msgid "Part Categories" +msgstr "" + +#: part/models.py:109 +msgid "Default location for parts in this category" +msgstr "" + +#: part/models.py:114 stock/models.py:192 templates/js/translated/part.js:2828 +#: templates/js/translated/stock.js:2857 +#: templates/js/translated/table_filters.js:246 +#: templates/js/translated/table_filters.js:290 +msgid "Structural" +msgstr "" + +#: part/models.py:116 +msgid "Parts may not be directly assigned to a structural category, but may be assigned to child categories." +msgstr "" + +#: part/models.py:125 +msgid "Default keywords" +msgstr "" + +#: part/models.py:126 +msgid "Default keywords for parts in this category" +msgstr "" + +#: part/models.py:132 stock/models.py:95 stock/models.py:174 +#: templates/InvenTree/settings/settings_staff_js.html:445 +msgid "Icon" +msgstr "" + +#: part/models.py:133 part/serializers.py:143 part/serializers.py:161 +#: stock/models.py:175 +msgid "Icon (optional)" +msgstr "" + +#: part/models.py:179 +msgid "You cannot make this part category structural because some parts are already assigned to it!" +msgstr "" + +#: part/models.py:514 +msgid "Cannot delete this part as it is locked" +msgstr "" + +#: part/models.py:517 +msgid "Cannot delete this part as it is still active" +msgstr "" + +#: part/models.py:522 +msgid "Cannot delete this part as it is used in an assembly" +msgstr "" + +#: part/models.py:560 +msgid "Invalid choice for parent part" +msgstr "" + +#: part/models.py:608 part/models.py:615 +#, python-brace-format +msgid "Part '{self}' cannot be used in BOM for '{parent}' (recursive)" +msgstr "" + +#: part/models.py:627 +#, python-brace-format +msgid "Part '{parent}' is used in BOM for '{self}' (recursive)" +msgstr "" + +#: part/models.py:690 +#, python-brace-format +msgid "IPN must match regex pattern {pattern}" +msgstr "" + +#: part/models.py:698 +msgid "Part cannot be a revision of itself" +msgstr "" + +#: part/models.py:705 +msgid "Cannot make a revision of a part which is already a revision" +msgstr "" + +#: part/models.py:712 +msgid "Revision code must be specified" +msgstr "" + +#: part/models.py:719 +msgid "Revisions are only allowed for assembly parts" +msgstr "" + +#: part/models.py:726 +msgid "Cannot make a revision of a template part" +msgstr "" + +#: part/models.py:732 +msgid "Parent part must point to the same template" +msgstr "" + +#: part/models.py:826 +msgid "Stock item with this serial number already exists" +msgstr "" + +#: part/models.py:927 +msgid "Duplicate IPN not allowed in part settings" +msgstr "" + +#: part/models.py:939 +msgid "Duplicate part revision already exists." +msgstr "" + +#: part/models.py:948 +msgid "Part with this Name, IPN and Revision already exists." +msgstr "" + +#: part/models.py:963 +msgid "Parts cannot be assigned to structural part categories!" +msgstr "" + +#: part/models.py:995 part/models.py:4103 +msgid "Part name" +msgstr "" + +#: part/models.py:1000 +msgid "Is Template" +msgstr "" + +#: part/models.py:1001 +msgid "Is this part a template part?" +msgstr "" + +#: part/models.py:1011 +msgid "Is this part a variant of another part?" +msgstr "" + +#: part/models.py:1019 +msgid "Part description (optional)" +msgstr "" + +#: part/models.py:1027 +msgid "Part keywords to improve visibility in search results" +msgstr "" + +#: part/models.py:1037 +msgid "Part category" +msgstr "" + +#: part/models.py:1052 +msgid "Part revision or version number" +msgstr "" + +#: part/models.py:1062 +msgid "Is this part a revision of another part?" +msgstr "" + +#: part/models.py:1063 part/templates/part/part_base.html:284 +msgid "Revision Of" +msgstr "" + +#: part/models.py:1087 +msgid "Where is this item normally stored?" +msgstr "" + +#: part/models.py:1133 part/templates/part/part_base.html:392 +msgid "Default Supplier" +msgstr "" + +#: part/models.py:1134 +msgid "Default supplier part" +msgstr "" + +#: part/models.py:1141 +msgid "Default Expiry" +msgstr "" + +#: part/models.py:1142 +msgid "Expiry time (in days) for stock items of this part" +msgstr "" + +#: part/models.py:1151 +msgid "Minimum allowed stock level" +msgstr "" + +#: part/models.py:1160 +msgid "Units of measure for this part" +msgstr "" + +#: part/models.py:1167 +msgid "Can this part be built from other parts?" +msgstr "" + +#: part/models.py:1173 +msgid "Can this part be used to build other parts?" +msgstr "" + +#: part/models.py:1179 +msgid "Does this part have tracking for unique items?" +msgstr "" + +#: part/models.py:1185 +msgid "Can this part have test results recorded against it?" +msgstr "" + +#: part/models.py:1191 +msgid "Can this part be purchased from external suppliers?" +msgstr "" + +#: part/models.py:1197 +msgid "Can this part be sold to customers?" +msgstr "" + +#: part/models.py:1201 +msgid "Is this part active?" +msgstr "" + +#: part/models.py:1206 templates/js/translated/part.js:821 +#: templates/js/translated/table_filters.js:724 +msgid "Locked" +msgstr "" + +#: part/models.py:1207 +msgid "Locked parts cannot be edited" +msgstr "" + +#: part/models.py:1213 +msgid "Is this a virtual part, such as a software product or license?" +msgstr "" + +#: part/models.py:1219 +msgid "BOM checksum" +msgstr "" + +#: part/models.py:1220 +msgid "Stored BOM checksum" +msgstr "" + +#: part/models.py:1228 +msgid "BOM checked by" +msgstr "" + +#: part/models.py:1233 +msgid "BOM checked date" +msgstr "" + +#: part/models.py:1249 +msgid "Creation User" +msgstr "" + +#: part/models.py:1259 +msgid "Owner responsible for this part" +msgstr "" + +#: part/models.py:1264 part/templates/part/part_base.html:355 +#: stock/templates/stock/item_base.html:447 +#: templates/js/translated/part.js:2490 +msgid "Last Stocktake" +msgstr "" + +#: part/models.py:2136 +msgid "Sell multiple" +msgstr "" + +#: part/models.py:3115 +msgid "Currency used to cache pricing calculations" +msgstr "" + +#: part/models.py:3131 +msgid "Minimum BOM Cost" +msgstr "" + +#: part/models.py:3132 +msgid "Minimum cost of component parts" +msgstr "" + +#: part/models.py:3138 +msgid "Maximum BOM Cost" +msgstr "" + +#: part/models.py:3139 +msgid "Maximum cost of component parts" +msgstr "" + +#: part/models.py:3145 +msgid "Minimum Purchase Cost" +msgstr "" + +#: part/models.py:3146 +msgid "Minimum historical purchase cost" +msgstr "" + +#: part/models.py:3152 +msgid "Maximum Purchase Cost" +msgstr "" + +#: part/models.py:3153 +msgid "Maximum historical purchase cost" +msgstr "" + +#: part/models.py:3159 +msgid "Minimum Internal Price" +msgstr "" + +#: part/models.py:3160 +msgid "Minimum cost based on internal price breaks" +msgstr "" + +#: part/models.py:3166 +msgid "Maximum Internal Price" +msgstr "" + +#: part/models.py:3167 +msgid "Maximum cost based on internal price breaks" +msgstr "" + +#: part/models.py:3173 +msgid "Minimum Supplier Price" +msgstr "" + +#: part/models.py:3174 +msgid "Minimum price of part from external suppliers" +msgstr "" + +#: part/models.py:3180 +msgid "Maximum Supplier Price" +msgstr "" + +#: part/models.py:3181 +msgid "Maximum price of part from external suppliers" +msgstr "" + +#: part/models.py:3187 +msgid "Minimum Variant Cost" +msgstr "" + +#: part/models.py:3188 +msgid "Calculated minimum cost of variant parts" +msgstr "" + +#: part/models.py:3194 +msgid "Maximum Variant Cost" +msgstr "" + +#: part/models.py:3195 +msgid "Calculated maximum cost of variant parts" +msgstr "" + +#: part/models.py:3202 +msgid "Override minimum cost" +msgstr "" + +#: part/models.py:3209 +msgid "Override maximum cost" +msgstr "" + +#: part/models.py:3216 +msgid "Calculated overall minimum cost" +msgstr "" + +#: part/models.py:3223 +msgid "Calculated overall maximum cost" +msgstr "" + +#: part/models.py:3229 +msgid "Minimum Sale Price" +msgstr "" + +#: part/models.py:3230 +msgid "Minimum sale price based on price breaks" +msgstr "" + +#: part/models.py:3236 +msgid "Maximum Sale Price" +msgstr "" + +#: part/models.py:3237 +msgid "Maximum sale price based on price breaks" +msgstr "" + +#: part/models.py:3243 +msgid "Minimum Sale Cost" +msgstr "" + +#: part/models.py:3244 +msgid "Minimum historical sale price" +msgstr "" + +#: part/models.py:3250 +msgid "Maximum Sale Cost" +msgstr "" + +#: part/models.py:3251 +msgid "Maximum historical sale price" +msgstr "" + +#: part/models.py:3270 +msgid "Part for stocktake" +msgstr "" + +#: part/models.py:3275 +msgid "Item Count" +msgstr "" + +#: part/models.py:3276 +msgid "Number of individual stock entries at time of stocktake" +msgstr "" + +#: part/models.py:3284 +msgid "Total available stock at time of stocktake" +msgstr "" + +#: part/models.py:3288 part/models.py:3371 +#: part/templates/part/part_scheduling.html:13 +#: report/templates/report/inventree_test_report.html:106 +#: templates/InvenTree/settings/plugin_settings.html:37 +#: templates/InvenTree/settings/settings_staff_js.html:543 +#: templates/js/translated/part.js:1092 templates/js/translated/pricing.js:826 +#: templates/js/translated/pricing.js:950 +#: templates/js/translated/purchase_order.js:1801 +#: templates/js/translated/stock.js:2906 +msgid "Date" +msgstr "" + +#: part/models.py:3289 +msgid "Date stocktake was performed" +msgstr "" + +#: part/models.py:3297 +msgid "Additional notes" +msgstr "" + +#: part/models.py:3307 +msgid "User who performed this stocktake" +msgstr "" + +#: part/models.py:3313 +msgid "Minimum Stock Cost" +msgstr "" + +#: part/models.py:3314 +msgid "Estimated minimum cost of stock on hand" +msgstr "" + +#: part/models.py:3320 +msgid "Maximum Stock Cost" +msgstr "" + +#: part/models.py:3321 +msgid "Estimated maximum cost of stock on hand" +msgstr "" + +#: part/models.py:3377 templates/InvenTree/settings/settings_staff_js.html:532 +msgid "Report" +msgstr "" + +#: part/models.py:3378 +msgid "Stocktake report file (generated internally)" +msgstr "" + +#: part/models.py:3383 templates/InvenTree/settings/settings_staff_js.html:539 +msgid "Part Count" +msgstr "" + +#: part/models.py:3384 +msgid "Number of parts covered by stocktake" +msgstr "" + +#: part/models.py:3394 +msgid "User who requested this stocktake report" +msgstr "" + +#: part/models.py:3404 +msgid "Part Sale Price Break" +msgstr "" + +#: part/models.py:3516 +msgid "Part Test Template" +msgstr "" + +#: part/models.py:3542 +msgid "Invalid template name - must include at least one alphanumeric character" +msgstr "" + +#: part/models.py:3563 part/models.py:3732 +msgid "Choices must be unique" +msgstr "" + +#: part/models.py:3574 +msgid "Test templates can only be created for testable parts" +msgstr "" + +#: part/models.py:3585 +msgid "Test template with the same key already exists for part" +msgstr "" + +#: part/models.py:3602 templates/js/translated/part.js:2898 +msgid "Test Name" +msgstr "" + +#: part/models.py:3603 +msgid "Enter a name for the test" +msgstr "" + +#: part/models.py:3609 +msgid "Test Key" +msgstr "" + +#: part/models.py:3610 +msgid "Simplified key for the test" +msgstr "" + +#: part/models.py:3617 +msgid "Test Description" +msgstr "" + +#: part/models.py:3618 +msgid "Enter description for this test" +msgstr "" + +#: part/models.py:3622 report/models.py:216 +#: templates/js/translated/part.js:2919 +#: templates/js/translated/table_filters.js:502 +msgid "Enabled" +msgstr "" + +#: part/models.py:3622 +msgid "Is this test enabled?" +msgstr "" + +#: part/models.py:3627 templates/js/translated/part.js:2927 +#: templates/js/translated/table_filters.js:498 +msgid "Required" +msgstr "" + +#: part/models.py:3628 +msgid "Is this test required to pass?" +msgstr "" + +#: part/models.py:3633 templates/js/translated/part.js:2935 +msgid "Requires Value" +msgstr "" + +#: part/models.py:3634 +msgid "Does this test require a value when adding a test result?" +msgstr "" + +#: part/models.py:3639 templates/js/translated/part.js:2942 +msgid "Requires Attachment" +msgstr "" + +#: part/models.py:3641 +msgid "Does this test require a file attachment when adding a test result?" +msgstr "" + +#: part/models.py:3647 part/models.py:3791 templates/js/translated/part.js:1643 +msgid "Choices" +msgstr "" + +#: part/models.py:3648 +msgid "Valid choices for this test (comma-separated)" +msgstr "" + +#: part/models.py:3680 +msgid "Part Parameter Template" +msgstr "" + +#: part/models.py:3707 +msgid "Checkbox parameters cannot have units" +msgstr "" + +#: part/models.py:3712 +msgid "Checkbox parameters cannot have choices" +msgstr "" + +#: part/models.py:3749 +msgid "Parameter template name must be unique" +msgstr "" + +#: part/models.py:3764 +msgid "Parameter Name" +msgstr "" + +#: part/models.py:3771 +msgid "Physical units for this parameter" +msgstr "" + +#: part/models.py:3779 +msgid "Parameter description" +msgstr "" + +#: part/models.py:3785 templates/js/translated/part.js:1634 +#: templates/js/translated/table_filters.js:837 +msgid "Checkbox" +msgstr "" + +#: part/models.py:3786 +msgid "Is this parameter a checkbox?" +msgstr "" + +#: part/models.py:3792 +msgid "Valid choices for this parameter (comma-separated)" +msgstr "" + +#: part/models.py:3826 +msgid "Part Parameter" +msgstr "" + +#: part/models.py:3852 +msgid "Parameter cannot be modified - part is locked" +msgstr "" + +#: part/models.py:3890 +msgid "Invalid choice for parameter value" +msgstr "" + +#: part/models.py:3939 +msgid "Parent Part" +msgstr "" + +#: part/models.py:3947 part/models.py:4055 part/models.py:4056 +#: templates/InvenTree/settings/settings_staff_js.html:295 +msgid "Parameter Template" +msgstr "" + +#: part/models.py:3953 +msgid "Parameter Value" +msgstr "" + +#: part/models.py:4003 +msgid "Part Category Parameter Template" +msgstr "" + +#: part/models.py:4062 templates/InvenTree/settings/settings_staff_js.html:304 +msgid "Default Value" +msgstr "" + +#: part/models.py:4063 +msgid "Default Parameter Value" +msgstr "" + +#: part/models.py:4101 +msgid "Part ID or part name" +msgstr "" + +#: part/models.py:4102 +msgid "Unique part ID value" +msgstr "" + +#: part/models.py:4104 +msgid "Part IPN value" +msgstr "" + +#: part/models.py:4105 +msgid "Level" +msgstr "" + +#: part/models.py:4105 +msgid "BOM level" +msgstr "" + +#: part/models.py:4215 +msgid "BOM item cannot be modified - assembly is locked" +msgstr "" + +#: part/models.py:4222 +msgid "BOM item cannot be modified - variant assembly is locked" +msgstr "" + +#: part/models.py:4232 +msgid "Select parent part" +msgstr "" + +#: part/models.py:4242 +msgid "Sub part" +msgstr "" + +#: part/models.py:4243 +msgid "Select part to be used in BOM" +msgstr "" + +#: part/models.py:4254 +msgid "BOM quantity for this BOM item" +msgstr "" + +#: part/models.py:4260 +msgid "This BOM item is optional" +msgstr "" + +#: part/models.py:4266 +msgid "This BOM item is consumable (it is not tracked in build orders)" +msgstr "" + +#: part/models.py:4273 part/templates/part/upload_bom.html:55 +msgid "Overage" +msgstr "" + +#: part/models.py:4274 +msgid "Estimated build wastage quantity (absolute or percentage)" +msgstr "" + +#: part/models.py:4281 +msgid "BOM item reference" +msgstr "" + +#: part/models.py:4289 +msgid "BOM item notes" +msgstr "" + +#: part/models.py:4295 +msgid "Checksum" +msgstr "" + +#: part/models.py:4296 +msgid "BOM line checksum" +msgstr "" + +#: part/models.py:4301 templates/js/translated/table_filters.js:181 +msgid "Validated" +msgstr "" + +#: part/models.py:4302 +msgid "This BOM item has been validated" +msgstr "" + +#: part/models.py:4307 part/templates/part/upload_bom.html:57 +#: templates/js/translated/bom.js:1054 +#: templates/js/translated/table_filters.js:185 +#: templates/js/translated/table_filters.js:218 +msgid "Gets inherited" +msgstr "" + +#: part/models.py:4308 +msgid "This BOM item is inherited by BOMs for variant parts" +msgstr "" + +#: part/models.py:4314 +msgid "Stock items for variant parts can be used for this BOM item" +msgstr "" + +#: part/models.py:4399 stock/models.py:689 +msgid "Quantity must be integer value for trackable parts" +msgstr "" + +#: part/models.py:4409 part/models.py:4411 +msgid "Sub part must be specified" +msgstr "" + +#: part/models.py:4554 +msgid "BOM Item Substitute" +msgstr "" + +#: part/models.py:4575 +msgid "Substitute part cannot be the same as the master part" +msgstr "" + +#: part/models.py:4588 +msgid "Parent BOM item" +msgstr "" + +#: part/models.py:4596 +msgid "Substitute part" +msgstr "" + +#: part/models.py:4612 +msgid "Part 1" +msgstr "" + +#: part/models.py:4620 +msgid "Part 2" +msgstr "" + +#: part/models.py:4621 +msgid "Select Related Part" +msgstr "" + +#: part/models.py:4640 +msgid "Part relationship cannot be created between a part and itself" +msgstr "" + +#: part/models.py:4645 +msgid "Duplicate relationship already exists" +msgstr "" + +#: part/serializers.py:124 +msgid "Parent Category" +msgstr "" + +#: part/serializers.py:125 templates/js/translated/part.js:312 +msgid "Parent part category" +msgstr "" + +#: part/serializers.py:132 part/serializers.py:158 +#: part/templates/part/category.html:119 part/templates/part/category.html:204 +#: part/templates/part/category_sidebar.html:7 +msgid "Subcategories" +msgstr "" + +#: part/serializers.py:197 +msgid "Results" +msgstr "" + +#: part/serializers.py:198 +msgid "Number of results recorded against this template" +msgstr "" + +#: part/serializers.py:225 part/serializers.py:243 stock/serializers.py:623 +msgid "Purchase currency of this stock item" +msgstr "" + +#: part/serializers.py:291 +msgid "Number of parts using this template" +msgstr "" + +#: part/serializers.py:432 +msgid "No parts selected" +msgstr "" + +#: part/serializers.py:442 +msgid "Select category" +msgstr "" + +#: part/serializers.py:477 +msgid "Original Part" +msgstr "" + +#: part/serializers.py:478 +msgid "Select original part to duplicate" +msgstr "" + +#: part/serializers.py:483 +msgid "Copy Image" +msgstr "" + +#: part/serializers.py:484 +msgid "Copy image from original part" +msgstr "" + +#: part/serializers.py:490 part/templates/part/detail.html:293 +msgid "Copy BOM" +msgstr "" + +#: part/serializers.py:491 +msgid "Copy bill of materials from original part" +msgstr "" + +#: part/serializers.py:497 +msgid "Copy Parameters" +msgstr "" + +#: part/serializers.py:498 +msgid "Copy parameter data from original part" +msgstr "" + +#: part/serializers.py:504 +msgid "Copy Notes" +msgstr "" + +#: part/serializers.py:505 +msgid "Copy notes from original part" +msgstr "" + +#: part/serializers.py:523 +msgid "Initial Stock Quantity" +msgstr "" + +#: part/serializers.py:525 +msgid "Specify initial stock quantity for this Part. If quantity is zero, no stock is added." +msgstr "" + +#: part/serializers.py:532 +msgid "Initial Stock Location" +msgstr "" + +#: part/serializers.py:533 +msgid "Specify initial stock location for this Part" +msgstr "" + +#: part/serializers.py:550 +msgid "Select supplier (or leave blank to skip)" +msgstr "" + +#: part/serializers.py:566 +msgid "Select manufacturer (or leave blank to skip)" +msgstr "" + +#: part/serializers.py:576 +msgid "Manufacturer part number" +msgstr "" + +#: part/serializers.py:583 +msgid "Selected company is not a valid supplier" +msgstr "" + +#: part/serializers.py:592 +msgid "Selected company is not a valid manufacturer" +msgstr "" + +#: part/serializers.py:603 +msgid "Manufacturer part matching this MPN already exists" +msgstr "" + +#: part/serializers.py:610 +msgid "Supplier part matching this SKU already exists" +msgstr "" + +#: part/serializers.py:922 +msgid "Revisions" +msgstr "" + +#: part/serializers.py:927 +msgid "Unallocated Stock" +msgstr "" + +#: part/serializers.py:930 +msgid "Variant Stock" +msgstr "" + +#: part/serializers.py:960 part/templates/part/copy_part.html:9 +#: templates/js/translated/part.js:474 +msgid "Duplicate Part" +msgstr "" + +#: part/serializers.py:961 +msgid "Copy initial data from another Part" +msgstr "" + +#: part/serializers.py:967 templates/js/translated/part.js:103 +msgid "Initial Stock" +msgstr "" + +#: part/serializers.py:968 +msgid "Create Part with initial stock quantity" +msgstr "" + +#: part/serializers.py:974 +msgid "Supplier Information" +msgstr "" + +#: part/serializers.py:975 +msgid "Add initial supplier information for this part" +msgstr "" + +#: part/serializers.py:983 +msgid "Copy Category Parameters" +msgstr "" + +#: part/serializers.py:984 +msgid "Copy parameter templates from selected part category" +msgstr "" + +#: part/serializers.py:989 +msgid "Existing Image" +msgstr "" + +#: part/serializers.py:990 +msgid "Filename of an existing part image" +msgstr "" + +#: part/serializers.py:1007 +msgid "Image file does not exist" +msgstr "" + +#: part/serializers.py:1213 +msgid "Limit stocktake report to a particular part, and any variant parts" +msgstr "" + +#: part/serializers.py:1223 +msgid "Limit stocktake report to a particular part category, and any child categories" +msgstr "" + +#: part/serializers.py:1233 +msgid "Limit stocktake report to a particular stock location, and any child locations" +msgstr "" + +#: part/serializers.py:1239 +msgid "Exclude External Stock" +msgstr "" + +#: part/serializers.py:1240 +msgid "Exclude stock items in external locations" +msgstr "" + +#: part/serializers.py:1245 +msgid "Generate Report" +msgstr "" + +#: part/serializers.py:1246 +msgid "Generate report file containing calculated stocktake data" +msgstr "" + +#: part/serializers.py:1251 +msgid "Update Parts" +msgstr "" + +#: part/serializers.py:1252 +msgid "Update specified parts with calculated stocktake data" +msgstr "" + +#: part/serializers.py:1260 +msgid "Stocktake functionality is not enabled" +msgstr "" + +#: part/serializers.py:1366 +msgid "Override calculated value for minimum price" +msgstr "" + +#: part/serializers.py:1373 +msgid "Minimum price currency" +msgstr "" + +#: part/serializers.py:1381 +msgid "Override calculated value for maximum price" +msgstr "" + +#: part/serializers.py:1388 +msgid "Maximum price currency" +msgstr "" + +#: part/serializers.py:1417 +msgid "Update" +msgstr "" + +#: part/serializers.py:1418 +msgid "Update pricing for this part" +msgstr "" + +#: part/serializers.py:1441 +#, python-brace-format +msgid "Could not convert from provided currencies to {default_currency}" +msgstr "" + +#: part/serializers.py:1448 +msgid "Minimum price must not be greater than maximum price" +msgstr "" + +#: part/serializers.py:1451 +msgid "Maximum price must not be less than minimum price" +msgstr "" + +#: part/serializers.py:1595 +msgid "Select the parent assembly" +msgstr "" + +#: part/serializers.py:1604 +msgid "Component Name" +msgstr "" + +#: part/serializers.py:1607 +msgid "Component IPN" +msgstr "" + +#: part/serializers.py:1610 +msgid "Component Description" +msgstr "" + +#: part/serializers.py:1616 +msgid "Select the component part" +msgstr "" + +#: part/serializers.py:1625 part/templates/part/part_base.html:242 +#: templates/js/translated/bom.js:1219 +msgid "Can Build" +msgstr "" + +#: part/serializers.py:1856 +msgid "Select part to copy BOM from" +msgstr "" + +#: part/serializers.py:1864 +msgid "Remove Existing Data" +msgstr "" + +#: part/serializers.py:1865 +msgid "Remove existing BOM items before copying" +msgstr "" + +#: part/serializers.py:1870 +msgid "Include Inherited" +msgstr "" + +#: part/serializers.py:1871 +msgid "Include BOM items which are inherited from templated parts" +msgstr "" + +#: part/serializers.py:1876 +msgid "Skip Invalid Rows" +msgstr "" + +#: part/serializers.py:1877 +msgid "Enable this option to skip invalid rows" +msgstr "" + +#: part/serializers.py:1882 +msgid "Copy Substitute Parts" +msgstr "" + +#: part/serializers.py:1883 +msgid "Copy substitute parts when duplicate BOM items" +msgstr "" + +#: part/serializers.py:1920 +msgid "Clear Existing BOM" +msgstr "" + +#: part/serializers.py:1921 +msgid "Delete existing BOM items before uploading" +msgstr "" + +#: part/serializers.py:1953 +msgid "No part column specified" +msgstr "" + +#: part/serializers.py:1997 +msgid "Multiple matching parts found" +msgstr "" + +#: part/serializers.py:2000 +msgid "No matching part found" +msgstr "" + +#: part/serializers.py:2002 +msgid "Part is not designated as a component" +msgstr "" + +#: part/serializers.py:2011 +msgid "Quantity not provided" +msgstr "" + +#: part/serializers.py:2019 +msgid "Invalid quantity" +msgstr "" + +#: part/serializers.py:2042 +msgid "At least one BOM item is required" +msgstr "" + +#: part/stocktake.py:224 templates/js/translated/part.js:1073 +#: templates/js/translated/part.js:1828 templates/js/translated/part.js:1884 +#: templates/js/translated/purchase_order.js:2154 +msgid "Total Quantity" +msgstr "" + +#: part/stocktake.py:225 +msgid "Total Cost Min" +msgstr "" + +#: part/stocktake.py:226 +msgid "Total Cost Max" +msgstr "" + +#: part/stocktake.py:284 +msgid "Stocktake Report Available" +msgstr "" + +#: part/stocktake.py:285 +msgid "A new stocktake report is available for download" +msgstr "" + +#: part/tasks.py:37 +msgid "Low stock notification" +msgstr "" + +#: part/tasks.py:39 +#, python-brace-format +msgid "The available stock for {part.name} has fallen below the configured minimum level" +msgstr "" + +#: part/templates/part/bom.html:6 +msgid "You do not have permission to edit the BOM." +msgstr "" + +#: part/templates/part/bom.html:15 +msgid "The BOM this part has been changed, and must be validated" +msgstr "" + +#: part/templates/part/bom.html:17 +#, python-format +msgid "This BOM was last checked by %(checker)s on %(check_date)s" +msgstr "" + +#: part/templates/part/bom.html:21 +msgid "This BOM has not been validated." +msgstr "" + +#: part/templates/part/category.html:32 +msgid "Perform stocktake for this part category" +msgstr "" + +#: part/templates/part/category.html:38 part/templates/part/category.html:42 +msgid "You are subscribed to notifications for this category" +msgstr "" + +#: part/templates/part/category.html:46 +msgid "Subscribe to notifications for this category" +msgstr "" + +#: part/templates/part/category.html:52 +msgid "Category Actions" +msgstr "" + +#: part/templates/part/category.html:57 +msgid "Edit category" +msgstr "" + +#: part/templates/part/category.html:58 +msgid "Edit Category" +msgstr "" + +#: part/templates/part/category.html:62 +msgid "Delete category" +msgstr "" + +#: part/templates/part/category.html:63 +msgid "Delete Category" +msgstr "" + +#: part/templates/part/category.html:99 +msgid "Top level part category" +msgstr "" + +#: part/templates/part/category.html:124 +msgid "Parts (Including subcategories)" +msgstr "" + +#: part/templates/part/category.html:162 +msgid "Create new part" +msgstr "" + +#: part/templates/part/category.html:163 templates/js/translated/bom.js:444 +msgid "New Part" +msgstr "" + +#: part/templates/part/category.html:189 +#: templates/InvenTree/settings/part_parameters.html:7 +#: templates/InvenTree/settings/sidebar.html:49 +msgid "Part Parameters" +msgstr "" + +#: part/templates/part/category.html:208 +msgid "Create new part category" +msgstr "" + +#: part/templates/part/category.html:209 +msgid "New Category" +msgstr "" + +#: part/templates/part/category_sidebar.html:13 +msgid "Import Parts" +msgstr "" + +#: part/templates/part/copy_part.html:10 +#, python-format +msgid "Make a copy of part '%(full_name)s'." +msgstr "" + +#: part/templates/part/copy_part.html:14 +#: part/templates/part/create_part.html:11 +msgid "Possible Matching Parts" +msgstr "" + +#: part/templates/part/copy_part.html:15 +#: part/templates/part/create_part.html:12 +msgid "The new part may be a duplicate of these existing parts" +msgstr "" + +#: part/templates/part/create_part.html:17 +#, python-format +msgid "%(full_name)s - %(desc)s (%(match_per)s%% match)" +msgstr "" + +#: part/templates/part/detail.html:20 +msgid "Part Stock" +msgstr "" + +#: part/templates/part/detail.html:44 +msgid "Refresh scheduling data" +msgstr "" + +#: part/templates/part/detail.html:45 part/templates/part/prices.html:15 +#: templates/js/translated/tables.js:552 +msgid "Refresh" +msgstr "" + +#: part/templates/part/detail.html:66 +msgid "Add stocktake information" +msgstr "" + +#: part/templates/part/detail.html:67 part/templates/part/part_sidebar.html:50 +#: stock/admin.py:256 templates/InvenTree/settings/part_stocktake.html:30 +#: templates/InvenTree/settings/sidebar.html:53 +#: templates/js/translated/stock.js:2302 users/models.py:204 +msgid "Stocktake" +msgstr "" + +#: part/templates/part/detail.html:83 +msgid "Part Test Templates" +msgstr "" + +#: part/templates/part/detail.html:88 +msgid "Add Test Template" +msgstr "" + +#: part/templates/part/detail.html:106 +msgid "Part Test Statistics" +msgstr "" + +#: part/templates/part/detail.html:155 stock/templates/stock/item.html:49 +msgid "Sales Order Allocations" +msgstr "" + +#: part/templates/part/detail.html:172 +msgid "Part Notes" +msgstr "" + +#: part/templates/part/detail.html:187 +msgid "Part Variants" +msgstr "" + +#: part/templates/part/detail.html:191 +msgid "Create new variant" +msgstr "" + +#: part/templates/part/detail.html:192 +msgid "New Variant" +msgstr "" + +#: part/templates/part/detail.html:215 +msgid "Add new parameter" +msgstr "" + +#: part/templates/part/detail.html:248 part/templates/part/part_sidebar.html:60 +msgid "Related Parts" +msgstr "" + +#: part/templates/part/detail.html:252 part/templates/part/detail.html:253 +msgid "Add Related" +msgstr "" + +#: part/templates/part/detail.html:271 part/templates/part/part_sidebar.html:17 +#: report/templates/report/inventree_bill_of_materials_report.html:100 +msgid "Bill of Materials" +msgstr "" + +#: part/templates/part/detail.html:276 +msgid "Export actions" +msgstr "" + +#: part/templates/part/detail.html:280 templates/js/translated/bom.js:340 +msgid "Export BOM" +msgstr "" + +#: part/templates/part/detail.html:282 +msgid "Print BOM Report" +msgstr "" + +#: part/templates/part/detail.html:288 +msgid "BOM actions" +msgstr "" + +#: part/templates/part/detail.html:292 +msgid "Upload BOM" +msgstr "" + +#: part/templates/part/detail.html:294 +msgid "Validate BOM" +msgstr "" + +#: part/templates/part/detail.html:299 part/templates/part/detail.html:300 +#: templates/js/translated/bom.js:1320 templates/js/translated/bom.js:1321 +msgid "Add BOM Item" +msgstr "" + +#: part/templates/part/detail.html:313 +msgid "Assemblies" +msgstr "" + +#: part/templates/part/detail.html:329 +msgid "Part Builds" +msgstr "" + +#: part/templates/part/detail.html:354 stock/templates/stock/item.html:36 +msgid "Build Order Allocations" +msgstr "" + +#: part/templates/part/detail.html:368 +msgid "Part Suppliers" +msgstr "" + +#: part/templates/part/detail.html:388 +msgid "Part Manufacturers" +msgstr "" + +#: part/templates/part/detail.html:672 +msgid "Related Part" +msgstr "" + +#: part/templates/part/detail.html:680 +msgid "Add Related Part" +msgstr "" + +#: part/templates/part/detail.html:765 +msgid "Add Test Result Template" +msgstr "" + +#: part/templates/part/import_wizard/ajax_part_upload.html:29 +#: part/templates/part/import_wizard/part_upload.html:14 +msgid "Insufficient privileges." +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:8 +msgid "Return to Parts" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:13 +msgid "Import Parts from File" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:31 +msgid "Requirements for part import" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:33 +msgid "The part import file must contain the required named columns as provided in the " +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:33 +msgid "Part Import Template" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:89 +msgid "Download Part Import Template" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:92 +#: templates/js/translated/bom.js:309 templates/js/translated/bom.js:343 +#: templates/js/translated/order.js:154 templates/js/translated/tables.js:189 +msgid "Format" +msgstr "" + +#: part/templates/part/import_wizard/part_upload.html:93 +#: templates/js/translated/bom.js:310 templates/js/translated/bom.js:344 +#: templates/js/translated/order.js:155 +msgid "Select file format" +msgstr "" + +#: part/templates/part/part_app_base.html:12 +msgid "Part List" +msgstr "" + +#: part/templates/part/part_base.html:25 part/templates/part/part_base.html:29 +msgid "You are subscribed to notifications for this part" +msgstr "" + +#: part/templates/part/part_base.html:33 +msgid "Subscribe to notifications for this part" +msgstr "" + +#: part/templates/part/part_base.html:52 +#: stock/templates/stock/item_base.html:61 +#: stock/templates/stock/location.html:71 templates/js/translated/label.js:136 +msgid "Print Label" +msgstr "" + +#: part/templates/part/part_base.html:58 +msgid "Show pricing information" +msgstr "" + +#: part/templates/part/part_base.html:63 +#: stock/templates/stock/item_base.html:106 +#: stock/templates/stock/location.html:80 +msgid "Stock actions" +msgstr "" + +#: part/templates/part/part_base.html:70 +msgid "Count part stock" +msgstr "" + +#: part/templates/part/part_base.html:76 +msgid "Transfer part stock" +msgstr "" + +#: part/templates/part/part_base.html:91 templates/js/translated/part.js:2299 +msgid "Part actions" +msgstr "" + +#: part/templates/part/part_base.html:94 +msgid "Duplicate part" +msgstr "" + +#: part/templates/part/part_base.html:97 +msgid "Edit part" +msgstr "" + +#: part/templates/part/part_base.html:100 +msgid "Delete part" +msgstr "" + +#: part/templates/part/part_base.html:119 +msgid "Part is a template part (variants can be made from this part)" +msgstr "" + +#: part/templates/part/part_base.html:123 +msgid "Part can be assembled from other parts" +msgstr "" + +#: part/templates/part/part_base.html:127 +msgid "Part can be used in assemblies" +msgstr "" + +#: part/templates/part/part_base.html:131 +msgid "Part stock is tracked by serial number" +msgstr "" + +#: part/templates/part/part_base.html:135 +msgid "Part can be purchased from external suppliers" +msgstr "" + +#: part/templates/part/part_base.html:139 +msgid "Part can be sold to customers" +msgstr "" + +#: part/templates/part/part_base.html:145 +msgid "Part is not active" +msgstr "" + +#: part/templates/part/part_base.html:153 +msgid "Part is virtual (not a physical part)" +msgstr "" + +#: part/templates/part/part_base.html:163 +#: part/templates/part/part_base.html:697 +msgid "Show Part Details" +msgstr "" + +#: part/templates/part/part_base.html:217 +msgid "Required for Orders" +msgstr "" + +#: part/templates/part/part_base.html:225 +#: stock/templates/stock/item_base.html:384 +msgid "Allocated to Build Orders" +msgstr "" + +#: part/templates/part/part_base.html:234 +#: stock/templates/stock/item_base.html:377 +msgid "Allocated to Sales Orders" +msgstr "" + +#: part/templates/part/part_base.html:307 +msgid "Minimum stock level" +msgstr "" + +#: part/templates/part/part_base.html:338 templates/js/translated/bom.js:1071 +#: templates/js/translated/part.js:1271 templates/js/translated/part.js:2463 +#: templates/js/translated/pricing.js:391 +#: templates/js/translated/pricing.js:1054 +msgid "Price Range" +msgstr "" + +#: part/templates/part/part_base.html:368 +msgid "Latest Serial Number" +msgstr "" + +#: part/templates/part/part_base.html:372 +#: stock/templates/stock/item_base.html:318 +msgid "Search for serial number" +msgstr "" + +#: part/templates/part/part_base.html:460 +msgid "Part QR Code" +msgstr "" + +#: part/templates/part/part_base.html:477 +msgid "Link Barcode to Part" +msgstr "" + +#: part/templates/part/part_base.html:527 +msgid "Calculate" +msgstr "" + +#: part/templates/part/part_base.html:544 +msgid "Remove associated image from this part" +msgstr "" + +#: part/templates/part/part_base.html:595 +msgid "No matching images found" +msgstr "" + +#: part/templates/part/part_base.html:691 +msgid "Hide Part Details" +msgstr "" + +#: part/templates/part/part_pricing.html:22 part/templates/part/prices.html:76 +#: part/templates/part/prices.html:227 templates/js/translated/pricing.js:485 +msgid "Supplier Pricing" +msgstr "" + +#: part/templates/part/part_pricing.html:26 +#: part/templates/part/part_pricing.html:52 +#: part/templates/part/part_pricing.html:95 +#: part/templates/part/part_pricing.html:110 +msgid "Unit Cost" +msgstr "" + +#: part/templates/part/part_pricing.html:40 +msgid "No supplier pricing available" +msgstr "" + +#: part/templates/part/part_pricing.html:48 part/templates/part/prices.html:90 +#: part/templates/part/prices.html:250 +msgid "BOM Pricing" +msgstr "" + +#: part/templates/part/part_pricing.html:66 +msgid "Unit Purchase Price" +msgstr "" + +#: part/templates/part/part_pricing.html:72 +msgid "Total Purchase Price" +msgstr "" + +#: part/templates/part/part_pricing.html:83 +msgid "No BOM pricing available" +msgstr "" + +#: part/templates/part/part_pricing.html:92 +msgid "Internal Price" +msgstr "" + +#: part/templates/part/part_pricing.html:123 +msgid "No pricing information is available for this part." +msgstr "" + +#: part/templates/part/part_scheduling.html:14 +msgid "Scheduled Quantity" +msgstr "" + +#: part/templates/part/part_sidebar.html:11 +msgid "Variants" +msgstr "" + +#: part/templates/part/part_sidebar.html:14 +#: stock/templates/stock/loc_link.html:3 stock/templates/stock/location.html:21 +#: stock/templates/stock/stock_app_base.html:10 +#: templates/InvenTree/search.html:153 +#: templates/InvenTree/settings/sidebar.html:51 +#: templates/js/translated/part.js:1249 templates/js/translated/part.js:2152 +#: templates/js/translated/part.js:2411 templates/js/translated/stock.js:1066 +#: templates/js/translated/stock.js:2156 templates/navbar.html:31 +msgid "Stock" +msgstr "" + +#: part/templates/part/part_sidebar.html:30 +#: templates/InvenTree/settings/sidebar.html:39 +msgid "Pricing" +msgstr "" + +#: part/templates/part/part_sidebar.html:44 +msgid "Scheduling" +msgstr "" + +#: part/templates/part/part_sidebar.html:54 +msgid "Test Templates" +msgstr "" + +#: part/templates/part/part_thumb.html:11 +msgid "Select from existing images" +msgstr "" + +#: part/templates/part/prices.html:11 +msgid "Pricing Overview" +msgstr "" + +#: part/templates/part/prices.html:14 +msgid "Refresh Part Pricing" +msgstr "" + +#: part/templates/part/prices.html:17 +msgid "Override Part Pricing" +msgstr "" + +#: part/templates/part/prices.html:18 +#: templates/InvenTree/settings/settings_staff_js.html:80 +#: templates/InvenTree/settings/user.html:24 +#: templates/js/translated/helpers.js:103 +#: templates/js/translated/pricing.js:628 templates/notes_buttons.html:3 +#: templates/notes_buttons.html:4 +msgid "Edit" +msgstr "" + +#: part/templates/part/prices.html:28 stock/admin.py:252 +#: stock/templates/stock/item_base.html:442 +#: templates/js/translated/company.js:1703 +#: templates/js/translated/company.js:1713 +#: templates/js/translated/stock.js:2332 +msgid "Last Updated" +msgstr "" + +#: part/templates/part/prices.html:37 part/templates/part/prices.html:127 +msgid "Price Category" +msgstr "" + +#: part/templates/part/prices.html:38 part/templates/part/prices.html:128 +msgid "Minimum" +msgstr "" + +#: part/templates/part/prices.html:39 part/templates/part/prices.html:129 +msgid "Maximum" +msgstr "" + +#: part/templates/part/prices.html:51 part/templates/part/prices.html:174 +msgid "Internal Pricing" +msgstr "" + +#: part/templates/part/prices.html:64 part/templates/part/prices.html:206 +msgid "Purchase History" +msgstr "" + +#: part/templates/part/prices.html:98 part/templates/part/prices.html:274 +msgid "Variant Pricing" +msgstr "" + +#: part/templates/part/prices.html:106 +msgid "Pricing Overrides" +msgstr "" + +#: part/templates/part/prices.html:113 +msgid "Overall Pricing" +msgstr "" + +#: part/templates/part/prices.html:149 part/templates/part/prices.html:326 +msgid "Sale History" +msgstr "" + +#: part/templates/part/prices.html:157 +msgid "Sale price data is not available for this part" +msgstr "" + +#: part/templates/part/prices.html:164 +msgid "Price range data is not available for this part." +msgstr "" + +#: part/templates/part/prices.html:175 part/templates/part/prices.html:207 +#: part/templates/part/prices.html:228 part/templates/part/prices.html:251 +#: part/templates/part/prices.html:275 part/templates/part/prices.html:298 +#: part/templates/part/prices.html:327 +msgid "Jump to overview" +msgstr "" + +#: part/templates/part/prices.html:180 +msgid "Add Internal Price Break" +msgstr "" + +#: part/templates/part/prices.html:297 +msgid "Sale Pricing" +msgstr "" + +#: part/templates/part/prices.html:303 +msgid "Add Sell Price Break" +msgstr "" + +#: part/templates/part/pricing_javascript.html:24 +msgid "Update Pricing" +msgstr "" + +#: part/templates/part/stock_count.html:7 +#: templates/js/translated/model_renderers.js:228 +#: templates/js/translated/part.js:707 templates/js/translated/part.js:2147 +#: templates/js/translated/part.js:2149 +msgid "No Stock" +msgstr "" + +#: part/templates/part/stock_count.html:9 templates/InvenTree/index.html:120 +msgid "Low Stock" +msgstr "" + +#: part/templates/part/upload_bom.html:8 +msgid "Return to BOM" +msgstr "" + +#: part/templates/part/upload_bom.html:13 +msgid "Upload Bill of Materials" +msgstr "" + +#: part/templates/part/upload_bom.html:19 +msgid "BOM upload requirements" +msgstr "" + +#: part/templates/part/upload_bom.html:23 +#: part/templates/part/upload_bom.html:90 +msgid "Upload BOM File" +msgstr "" + +#: part/templates/part/upload_bom.html:29 +msgid "Submit BOM Data" +msgstr "" + +#: part/templates/part/upload_bom.html:37 +msgid "Requirements for BOM upload" +msgstr "" + +#: part/templates/part/upload_bom.html:39 +msgid "The BOM file must contain the required named columns as provided in the " +msgstr "" + +#: part/templates/part/upload_bom.html:39 +msgid "BOM Upload Template" +msgstr "" + +#: part/templates/part/upload_bom.html:40 +msgid "Each part must already exist in the database" +msgstr "" + +#: part/templates/part/variant_part.html:9 +msgid "Create new part variant" +msgstr "" + +#: part/templates/part/variant_part.html:10 +msgid "Create a new variant part from this template" +msgstr "" + +#: part/views.py:111 +msgid "Match References" +msgstr "" + +#: part/views.py:275 +#, python-brace-format +msgid "Can't import part {new_part.name} because there is no category assigned" +msgstr "" + +#: part/views.py:425 +msgid "Select Part Image" +msgstr "" + +#: part/views.py:448 +msgid "Updated part image" +msgstr "" + +#: part/views.py:451 +msgid "Part image not found" +msgstr "" + +#: part/views.py:545 +msgid "Part Pricing" +msgstr "" + +#: plugin/api.py:174 +msgid "Plugin cannot be deleted as it is currently active" +msgstr "" + +#: plugin/base/action/api.py:32 +msgid "No action specified" +msgstr "" + +#: plugin/base/action/api.py:41 +msgid "No matching action found" +msgstr "" + +#: plugin/base/barcodes/api.py:125 plugin/base/barcodes/api.py:370 +#: plugin/base/barcodes/api.py:545 +msgid "No match found for barcode data" +msgstr "" + +#: plugin/base/barcodes/api.py:129 +msgid "Match found for barcode data" +msgstr "" + +#: plugin/base/barcodes/api.py:163 plugin/base/barcodes/serializers.py:45 +msgid "Model is not supported" +msgstr "" + +#: plugin/base/barcodes/api.py:168 +msgid "Model instance not found" +msgstr "" + +#: plugin/base/barcodes/api.py:197 +#: templates/js/translated/purchase_order.js:1468 +msgid "Barcode matches existing item" +msgstr "" + +#: plugin/base/barcodes/api.py:336 +msgid "No matching part data found" +msgstr "" + +#: plugin/base/barcodes/api.py:352 +msgid "No matching supplier parts found" +msgstr "" + +#: plugin/base/barcodes/api.py:356 +msgid "Multiple matching supplier parts found" +msgstr "" + +#: plugin/base/barcodes/api.py:380 +msgid "Matched supplier part" +msgstr "" + +#: plugin/base/barcodes/api.py:429 +msgid "Item has already been received" +msgstr "" + +#: plugin/base/barcodes/api.py:466 +msgid "No match for supplier barcode" +msgstr "" + +#: plugin/base/barcodes/api.py:509 +msgid "Multiple matching line items found" +msgstr "" + +#: plugin/base/barcodes/api.py:512 +msgid "No matching line item found" +msgstr "" + +#: plugin/base/barcodes/api.py:550 plugin/base/barcodes/api.py:557 +msgid "Barcode does not match an existing stock item" +msgstr "" + +#: plugin/base/barcodes/api.py:568 +msgid "Stock item does not match line item" +msgstr "" + +#: plugin/base/barcodes/api.py:592 templates/js/translated/build.js:2783 +#: templates/js/translated/sales_order.js:1953 +msgid "Insufficient stock available" +msgstr "" + +#: plugin/base/barcodes/api.py:601 +msgid "Stock item allocated to sales order" +msgstr "" + +#: plugin/base/barcodes/api.py:605 +msgid "Not enough information" +msgstr "" + +#: plugin/base/barcodes/mixins.py:172 plugin/base/barcodes/mixins.py:204 +msgid "Found multiple matching supplier parts for barcode" +msgstr "" + +#: plugin/base/barcodes/mixins.py:222 +#, python-brace-format +msgid "Found multiple purchase orders matching '{order}'" +msgstr "" + +#: plugin/base/barcodes/mixins.py:226 +#, python-brace-format +msgid "No matching purchase order for '{order}'" +msgstr "" + +#: plugin/base/barcodes/mixins.py:231 +msgid "Purchase order does not match supplier" +msgstr "" + +#: plugin/base/barcodes/mixins.py:467 +msgid "Failed to find pending line item for supplier part" +msgstr "" + +#: plugin/base/barcodes/mixins.py:498 +msgid "Further information required to receive line item" +msgstr "" + +#: plugin/base/barcodes/mixins.py:506 +msgid "Received purchase order line item" +msgstr "" + +#: plugin/base/barcodes/serializers.py:21 +msgid "Scanned barcode data" +msgstr "" + +#: plugin/base/barcodes/serializers.py:30 +msgid "Model name to generate barcode for" +msgstr "" + +#: plugin/base/barcodes/serializers.py:35 +msgid "Primary key of model object to generate barcode for" +msgstr "" + +#: plugin/base/barcodes/serializers.py:105 +msgid "Purchase Order to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:111 +msgid "Purchase order is not pending" +msgstr "" + +#: plugin/base/barcodes/serializers.py:129 +msgid "PurchaseOrder to receive items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:135 +msgid "Purchase order has not been placed" +msgstr "" + +#: plugin/base/barcodes/serializers.py:143 +msgid "Location to receive items into" +msgstr "" + +#: plugin/base/barcodes/serializers.py:149 +msgid "Cannot select a structural location" +msgstr "" + +#: plugin/base/barcodes/serializers.py:163 +msgid "Sales Order to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:169 +msgid "Sales order is not pending" +msgstr "" + +#: plugin/base/barcodes/serializers.py:177 +msgid "Sales order line item to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:184 +msgid "Sales order shipment to allocate items against" +msgstr "" + +#: plugin/base/barcodes/serializers.py:190 +msgid "Shipment has already been delivered" +msgstr "" + +#: plugin/base/barcodes/serializers.py:195 +msgid "Quantity to allocate" +msgstr "" + +#: plugin/base/label/label.py:39 templates/js/translated/label.js:148 +msgid "Label printing failed" +msgstr "" + +#: plugin/base/label/mixins.py:54 +msgid "Error rendering label to PDF" +msgstr "" + +#: plugin/base/label/mixins.py:68 +msgid "Error rendering label to HTML" +msgstr "" + +#: plugin/base/label/mixins.py:149 +msgid "No items provided to print" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:27 +msgid "InvenTree Barcodes" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:28 +msgid "Provides native support for barcodes" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:30 +#: plugin/builtin/integration/core_notifications.py:35 +#: plugin/builtin/integration/currency_exchange.py:21 +#: plugin/builtin/labels/inventree_label.py:22 +#: plugin/builtin/labels/inventree_machine.py:64 +#: plugin/builtin/labels/label_sheet.py:63 +#: plugin/builtin/suppliers/digikey.py:19 plugin/builtin/suppliers/lcsc.py:21 +#: plugin/builtin/suppliers/mouser.py:19 plugin/builtin/suppliers/tme.py:21 +msgid "InvenTree contributors" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:34 +msgid "Internal Barcode Format" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:35 +msgid "Select an internal barcode format" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:37 +msgid "JSON barcodes (human readable)" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:38 +msgid "Short barcodes (space optimized)" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:43 +msgid "Short Barcode Prefix" +msgstr "" + +#: plugin/builtin/barcodes/inventree_barcode.py:45 +msgid "Customize the prefix used for short barcodes, may be useful for environments with multiple InvenTree instances" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:34 +msgid "InvenTree Notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:36 +msgid "Integrated outgoing notification methods" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:41 +#: plugin/builtin/integration/core_notifications.py:80 +msgid "Enable email notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:42 +#: plugin/builtin/integration/core_notifications.py:81 +msgid "Allow sending of emails for event notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:47 +msgid "Enable slack notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:49 +msgid "Allow sending of slack channel messages for event notifications" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:55 +msgid "Slack incoming webhook url" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:56 +msgid "URL that is used to send messages to a slack channel" +msgstr "" + +#: plugin/builtin/integration/core_notifications.py:166 +msgid "Open link" +msgstr "" + +#: plugin/builtin/integration/currency_exchange.py:22 +msgid "InvenTree Currency Exchange" +msgstr "" + +#: plugin/builtin/integration/currency_exchange.py:23 +msgid "Default currency exchange integration" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:19 +msgid "InvenTree PDF label printer" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:20 +msgid "Provides native support for printing PDF labels" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:28 +#: plugin/builtin/labels/label_sheet.py:69 +msgid "Debug mode" +msgstr "" + +#: plugin/builtin/labels/inventree_label.py:29 +#: plugin/builtin/labels/label_sheet.py:70 +msgid "Enable debug mode - returns raw HTML instead of PDF" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:61 +msgid "InvenTree machine label printer" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:62 +msgid "Provides support for printing using a machine" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:149 +msgid "last used" +msgstr "" + +#: plugin/builtin/labels/inventree_machine.py:166 +msgid "Options" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:29 +msgid "Page size for the label sheet" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:34 +msgid "Skip Labels" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:35 +msgid "Skip this number of labels when printing label sheets" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:41 +msgid "Border" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:42 +msgid "Print a border around each label" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:47 report/models.py:315 +msgid "Landscape" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:48 +msgid "Print the label sheet in landscape mode" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:60 +msgid "InvenTree Label Sheet Printer" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:61 +msgid "Arrays multiple labels onto a single sheet" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:106 +msgid "Label is too large for page size" +msgstr "" + +#: plugin/builtin/labels/label_sheet.py:140 +msgid "No labels were generated" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:16 +msgid "Supplier Integration - DigiKey" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:17 +msgid "Provides support for scanning DigiKey barcodes" +msgstr "" + +#: plugin/builtin/suppliers/digikey.py:26 +msgid "The Supplier which acts as 'DigiKey'" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:18 +msgid "Supplier Integration - LCSC" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:19 +msgid "Provides support for scanning LCSC barcodes" +msgstr "" + +#: plugin/builtin/suppliers/lcsc.py:27 +msgid "The Supplier which acts as 'LCSC'" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:16 +msgid "Supplier Integration - Mouser" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:17 +msgid "Provides support for scanning Mouser barcodes" +msgstr "" + +#: plugin/builtin/suppliers/mouser.py:25 +msgid "The Supplier which acts as 'Mouser'" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:18 +msgid "Supplier Integration - TME" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:19 +msgid "Provides support for scanning TME barcodes" +msgstr "" + +#: plugin/builtin/suppliers/tme.py:27 +msgid "The Supplier which acts as 'TME'" +msgstr "" + +#: plugin/installer.py:199 plugin/installer.py:282 +msgid "Only staff users can administer plugins" +msgstr "" + +#: plugin/installer.py:202 +msgid "Plugin installation is disabled" +msgstr "" + +#: plugin/installer.py:246 +msgid "Installed plugin successfully" +msgstr "" + +#: plugin/installer.py:251 +#, python-brace-format +msgid "Installed plugin into {path}" +msgstr "" + +#: plugin/installer.py:273 +msgid "Plugin was not found in registry" +msgstr "" + +#: plugin/installer.py:276 +msgid "Plugin is not a packaged plugin" +msgstr "" + +#: plugin/installer.py:279 +msgid "Plugin package name not found" +msgstr "" + +#: plugin/installer.py:299 +msgid "Plugin uninstalling is disabled" +msgstr "" + +#: plugin/installer.py:303 +msgid "Plugin cannot be uninstalled as it is currently active" +msgstr "" + +#: plugin/installer.py:316 +msgid "Uninstalled plugin successfully" +msgstr "" + +#: plugin/models.py:36 +msgid "Plugin Configuration" +msgstr "" + +#: plugin/models.py:37 +msgid "Plugin Configurations" +msgstr "" + +#: plugin/models.py:44 +msgid "Key of plugin" +msgstr "" + +#: plugin/models.py:52 +msgid "PluginName of the plugin" +msgstr "" + +#: plugin/models.py:59 plugin/serializers.py:90 +msgid "Package Name" +msgstr "" + +#: plugin/models.py:61 +msgid "Name of the installed package, if the plugin was installed via PIP" +msgstr "" + +#: plugin/models.py:66 +msgid "Is the plugin active" +msgstr "" + +#: plugin/models.py:157 templates/js/translated/table_filters.js:377 +#: templates/js/translated/table_filters.js:525 +msgid "Installed" +msgstr "" + +#: plugin/models.py:166 +msgid "Sample plugin" +msgstr "" + +#: plugin/models.py:174 +msgid "Builtin Plugin" +msgstr "" + +#: plugin/models.py:182 +msgid "Package Plugin" +msgstr "" + +#: plugin/models.py:220 report/models.py:482 +#: templates/InvenTree/settings/plugin_settings.html:9 +#: templates/js/translated/plugin.js:51 +msgid "Plugin" +msgstr "" + +#: plugin/models.py:267 +msgid "Method" +msgstr "" + +#: plugin/plugin.py:271 +msgid "No author found" +msgstr "" + +#: plugin/registry.py:534 +#, python-brace-format +msgid "Plugin '{p}' is not compatible with the current InvenTree version {v}" +msgstr "" + +#: plugin/registry.py:537 +#, python-brace-format +msgid "Plugin requires at least version {v}" +msgstr "" + +#: plugin/registry.py:539 +#, python-brace-format +msgid "Plugin requires at most version {v}" +msgstr "" + +#: plugin/samples/integration/sample.py:52 +msgid "Enable PO" +msgstr "" + +#: plugin/samples/integration/sample.py:53 +msgid "Enable PO functionality in InvenTree interface" +msgstr "" + +#: plugin/samples/integration/sample.py:58 +msgid "API Key" +msgstr "" + +#: plugin/samples/integration/sample.py:59 +msgid "Key required for accessing external API" +msgstr "" + +#: plugin/samples/integration/sample.py:63 +msgid "Numerical" +msgstr "" + +#: plugin/samples/integration/sample.py:64 +msgid "A numerical setting" +msgstr "" + +#: plugin/samples/integration/sample.py:69 +msgid "Choice Setting" +msgstr "" + +#: plugin/samples/integration/sample.py:70 +msgid "A setting with multiple choices" +msgstr "" + +#: plugin/samples/integration/sample_currency_exchange.py:15 +msgid "Sample currency exchange plugin" +msgstr "" + +#: plugin/samples/integration/sample_currency_exchange.py:18 +msgid "InvenTree Contributors" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:22 +msgid "Enable Part Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:23 +msgid "Enable custom panels for Part views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:28 +msgid "Enable Purchase Order Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:29 +msgid "Enable custom panels for Purchase Order views" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:34 +msgid "Enable Broken Panels" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:35 +msgid "Enable broken panels for testing" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:40 +msgid "Enable Dynamic Panel" +msgstr "" + +#: plugin/samples/integration/user_interface_sample.py:41 +msgid "Enable dynamic panels for testing" +msgstr "" + +#: plugin/serializers.py:81 +msgid "Source URL" +msgstr "" + +#: plugin/serializers.py:83 +msgid "Source for the package - this can be a custom registry or a VCS path" +msgstr "" + +#: plugin/serializers.py:92 +msgid "Name for the Plugin Package - can also contain a version indicator" +msgstr "" + +#: plugin/serializers.py:99 +#: templates/InvenTree/settings/plugin_settings.html:42 +#: templates/js/translated/plugin.js:86 +msgid "Version" +msgstr "" + +#: plugin/serializers.py:101 +msgid "Version specifier for the plugin. Leave blank for latest version." +msgstr "" + +#: plugin/serializers.py:106 +msgid "Confirm plugin installation" +msgstr "" + +#: plugin/serializers.py:108 +msgid "This will install this plugin now into the current instance. The instance will go into maintenance." +msgstr "" + +#: plugin/serializers.py:121 +msgid "Installation not confirmed" +msgstr "" + +#: plugin/serializers.py:123 +msgid "Either packagename of URL must be provided" +msgstr "" + +#: plugin/serializers.py:159 +msgid "Full reload" +msgstr "" + +#: plugin/serializers.py:160 +msgid "Perform a full reload of the plugin registry" +msgstr "" + +#: plugin/serializers.py:166 +msgid "Force reload" +msgstr "" + +#: plugin/serializers.py:168 +msgid "Force a reload of the plugin registry, even if it is already loaded" +msgstr "" + +#: plugin/serializers.py:175 +msgid "Collect plugins" +msgstr "" + +#: plugin/serializers.py:176 +msgid "Collect plugins and add them to the registry" +msgstr "" + +#: plugin/serializers.py:203 +msgid "Activate Plugin" +msgstr "" + +#: plugin/serializers.py:204 +msgid "Activate this plugin" +msgstr "" + +#: plugin/serializers.py:224 +msgid "Delete configuration" +msgstr "" + +#: plugin/serializers.py:225 +msgid "Delete the plugin configuration from the database" +msgstr "" + +#: plugin/serializers.py:324 +msgid "Plugin Key" +msgstr "" + +#: plugin/serializers.py:328 +msgid "Panel Name" +msgstr "" + +#: plugin/serializers.py:332 +msgid "Panel Title" +msgstr "" + +#: plugin/serializers.py:337 +msgid "Panel Icon" +msgstr "" + +#: plugin/serializers.py:341 +msgid "Panel Content (HTML)" +msgstr "" + +#: plugin/serializers.py:345 +msgid "Panel Source (javascript)" +msgstr "" + +#: report/api.py:88 +msgid "No valid objects provided to template" +msgstr "" + +#: report/api.py:103 report/models.py:446 report/serializers.py:99 +#: report/serializers.py:149 templates/js/translated/purchase_order.js:1817 +#: templates/js/translated/return_order.js:353 +#: templates/js/translated/sales_order.js:887 +#: templates/js/translated/sales_order.js:1047 +msgid "Items" +msgstr "" + +#: report/api.py:180 +msgid "Plugin not found" +msgstr "" + +#: report/api.py:182 +msgid "Plugin is not active" +msgstr "" + +#: report/api.py:184 +msgid "Plugin does not support label printing" +msgstr "" + +#: report/api.py:233 +msgid "Invalid label dimensions" +msgstr "" + +#: report/api.py:248 report/api.py:329 +msgid "No valid items provided to template" +msgstr "" + +#: report/api.py:283 +msgid "Error printing label" +msgstr "" + +#: report/api.py:358 +msgid "Report saved at time of printing" +msgstr "" + +#: report/api.py:384 report/api.py:420 +#, python-brace-format +msgid "Template file '{template}' is missing or does not exist" +msgstr "" + +#: report/helpers.py:43 +msgid "A4" +msgstr "" + +#: report/helpers.py:44 +msgid "A3" +msgstr "" + +#: report/helpers.py:45 +msgid "Legal" +msgstr "" + +#: report/helpers.py:46 +msgid "Letter" +msgstr "" + +#: report/models.py:118 +msgid "Template file with this name already exists" +msgstr "" + +#: report/models.py:150 +msgid "Template name" +msgstr "" + +#: report/models.py:156 +msgid "Template description" +msgstr "" + +#: report/models.py:162 +msgid "Revision number (auto-increments)" +msgstr "" + +#: report/models.py:168 +msgid "Attach to Model on Print" +msgstr "" + +#: report/models.py:170 +msgid "Save report output as an attachment against linked model instance when printing" +msgstr "" + +#: report/models.py:210 +msgid "Filename Pattern" +msgstr "" + +#: report/models.py:211 +msgid "Pattern for generating filenames" +msgstr "" + +#: report/models.py:216 +msgid "Template is enabled" +msgstr "" + +#: report/models.py:222 +msgid "Target model type for template" +msgstr "" + +#: report/models.py:242 +msgid "Filters" +msgstr "" + +#: report/models.py:243 +msgid "Template query filters (comma-separated list of key=value pairs)" +msgstr "" + +#: report/models.py:302 report/models.py:369 +msgid "Template file" +msgstr "" + +#: report/models.py:310 +msgid "Page size for PDF reports" +msgstr "" + +#: report/models.py:316 +msgid "Render report in landscape orientation" +msgstr "" + +#: report/models.py:375 +msgid "Width [mm]" +msgstr "" + +#: report/models.py:376 +msgid "Label width, specified in mm" +msgstr "" + +#: report/models.py:382 +msgid "Height [mm]" +msgstr "" + +#: report/models.py:383 +msgid "Label height, specified in mm" +msgstr "" + +#: report/models.py:446 +msgid "Number of items to process" +msgstr "" + +#: report/models.py:452 +msgid "Report generation is complete" +msgstr "" + +#: report/models.py:456 templates/js/translated/build.js:2352 +msgid "Progress" +msgstr "" + +#: report/models.py:456 +msgid "Report generation progress" +msgstr "" + +#: report/models.py:464 +msgid "Report Template" +msgstr "" + +#: report/models.py:471 report/models.py:494 +msgid "Output File" +msgstr "" + +#: report/models.py:472 report/models.py:495 +msgid "Generated output file" +msgstr "" + +#: report/models.py:483 +msgid "Label output plugin" +msgstr "" + +#: report/models.py:487 +msgid "Label Template" +msgstr "" + +#: report/models.py:510 +msgid "Snippet" +msgstr "" + +#: report/models.py:511 +msgid "Report snippet file" +msgstr "" + +#: report/models.py:518 +msgid "Snippet file description" +msgstr "" + +#: report/models.py:536 +msgid "Asset" +msgstr "" + +#: report/models.py:537 +msgid "Report asset file" +msgstr "" + +#: report/models.py:544 +msgid "Asset file description" +msgstr "" + +#: report/serializers.py:92 +msgid "Select report template" +msgstr "" + +#: report/serializers.py:100 report/serializers.py:150 +msgid "List of item primary keys to include in the report" +msgstr "" + +#: report/serializers.py:133 +msgid "Select label template" +msgstr "" + +#: report/serializers.py:141 +msgid "Printing Plugin" +msgstr "" + +#: report/serializers.py:142 +msgid "Select plugin to use for label printing" +msgstr "" + +#: report/templates/label/part_label.html:31 +#: report/templates/label/stockitem_qr.html:21 +#: report/templates/label/stocklocation_qr.html:20 +#: templates/allauth_2fa/setup.html:18 +msgid "QR Code" +msgstr "" + +#: report/templates/label/part_label_code128.html:31 +#: report/templates/label/stocklocation_qr_and_text.html:31 +#: templates/qr_code.html:7 +msgid "QR code" +msgstr "" + +#: report/templates/report/inventree_bill_of_materials_report.html:133 +msgid "Materials needed" +msgstr "" + +#: report/templates/report/inventree_build_order_report.html:146 +msgid "Required For" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:15 +msgid "Supplier was deleted" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:30 +#: report/templates/report/inventree_sales_order_report.html:30 +#: templates/js/translated/order.js:341 templates/js/translated/pricing.js:527 +#: templates/js/translated/pricing.js:596 +#: templates/js/translated/pricing.js:834 +#: templates/js/translated/purchase_order.js:2185 +#: templates/js/translated/sales_order.js:1873 +msgid "Unit Price" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:55 +#: report/templates/report/inventree_return_order_report.html:48 +#: report/templates/report/inventree_sales_order_report.html:55 +msgid "Extra Line Items" +msgstr "" + +#: report/templates/report/inventree_purchase_order_report.html:72 +#: report/templates/report/inventree_sales_order_report.html:72 +#: templates/js/translated/purchase_order.js:2087 +#: templates/js/translated/sales_order.js:1842 +#: templates/test_statistics_table.html:8 +#: templates/test_statistics_table.html:19 +msgid "Total" +msgstr "" + +#: report/templates/report/inventree_stock_location_report.html:97 +msgid "Stock location items" +msgstr "" + +#: report/templates/report/inventree_test_report.html:21 +msgid "Stock Item Test Report" +msgstr "" + +#: report/templates/report/inventree_test_report.html:97 +msgid "Test Results" +msgstr "" + +#: report/templates/report/inventree_test_report.html:102 +#: templates/js/translated/stock.js:1580 +msgid "Test" +msgstr "" + +#: report/templates/report/inventree_test_report.html:103 stock/models.py:2533 +msgid "Result" +msgstr "" + +#: report/templates/report/inventree_test_report.html:129 +msgid "Pass" +msgstr "" + +#: report/templates/report/inventree_test_report.html:131 +msgid "Fail" +msgstr "" + +#: report/templates/report/inventree_test_report.html:138 +msgid "No result (required)" +msgstr "" + +#: report/templates/report/inventree_test_report.html:140 +msgid "No result" +msgstr "" + +#: report/templates/report/inventree_test_report.html:153 +#: stock/serializers.py:606 stock/templates/stock/stock_sidebar.html:16 +msgid "Installed Items" +msgstr "" + +#: report/templates/report/inventree_test_report.html:167 stock/admin.py:162 +#: templates/js/translated/stock.js:706 templates/js/translated/stock.js:877 +#: templates/js/translated/stock.js:3195 +msgid "Serial" +msgstr "" + +#: report/templatetags/report.py:98 +msgid "Asset file does not exist" +msgstr "" + +#: report/templatetags/report.py:154 report/templatetags/report.py:233 +msgid "Image file not found" +msgstr "" + +#: report/templatetags/report.py:258 +msgid "part_image tag requires a Part instance" +msgstr "" + +#: report/templatetags/report.py:299 +msgid "company_image tag requires a Company instance" +msgstr "" + +#: stock/admin.py:51 stock/admin.py:172 +msgid "Location ID" +msgstr "" + +#: stock/admin.py:63 stock/templates/stock/location.html:128 +#: stock/templates/stock/location.html:134 +msgid "Location Path" +msgstr "" + +#: stock/admin.py:149 +msgid "Stock Item ID" +msgstr "" + +#: stock/admin.py:168 +msgid "Status Code" +msgstr "" + +#: stock/admin.py:180 +msgid "Supplier Part ID" +msgstr "" + +#: stock/admin.py:185 +msgid "Supplier Part SKU" +msgstr "" + +#: stock/admin.py:190 +msgid "Supplier ID" +msgstr "" + +#: stock/admin.py:201 +msgid "Customer ID" +msgstr "" + +#: stock/admin.py:206 stock/models.py:829 +#: stock/templates/stock/item_base.html:350 +msgid "Installed In" +msgstr "" + +#: stock/admin.py:211 +msgid "Build ID" +msgstr "" + +#: stock/admin.py:221 +msgid "Sales Order ID" +msgstr "" + +#: stock/admin.py:226 +msgid "Purchase Order ID" +msgstr "" + +#: stock/admin.py:241 +msgid "Review Needed" +msgstr "" + +#: stock/admin.py:246 +msgid "Delete on Deplete" +msgstr "" + +#: stock/admin.py:261 stock/models.py:923 +#: stock/templates/stock/item_base.html:429 +#: templates/js/translated/stock.js:2316 users/models.py:124 +msgid "Expiry Date" +msgstr "" + +#: stock/api.py:310 +msgid "Filter by location depth" +msgstr "" + +#: stock/api.py:330 +msgid "Filter by top-level locations" +msgstr "" + +#: stock/api.py:345 +msgid "Include sub-locations in filtered results" +msgstr "" + +#: stock/api.py:366 stock/serializers.py:1193 +msgid "Parent Location" +msgstr "" + +#: stock/api.py:367 +msgid "Filter by parent location" +msgstr "" + +#: stock/api.py:614 templates/js/translated/table_filters.js:434 +msgid "External Location" +msgstr "" + +#: stock/api.py:802 +msgid "Part Tree" +msgstr "" + +#: stock/api.py:832 +msgid "Expiry date before" +msgstr "" + +#: stock/api.py:836 +msgid "Expiry date after" +msgstr "" + +#: stock/api.py:839 stock/serializers.py:611 +#: stock/templates/stock/item_base.html:435 +#: templates/js/translated/table_filters.js:448 +msgid "Stale" +msgstr "" + +#: stock/api.py:926 +msgid "Quantity is required" +msgstr "" + +#: stock/api.py:932 +msgid "Valid part must be supplied" +msgstr "" + +#: stock/api.py:963 +msgid "The given supplier part does not exist" +msgstr "" + +#: stock/api.py:973 +msgid "The supplier part has a pack size defined, but flag use_pack_size not set" +msgstr "" + +#: stock/api.py:998 +msgid "Serial numbers cannot be supplied for a non-trackable part" +msgstr "" + +#: stock/models.py:69 +msgid "Stock Location type" +msgstr "" + +#: stock/models.py:70 +msgid "Stock Location types" +msgstr "" + +#: stock/models.py:96 +msgid "Default icon for all locations that have no icon set (optional)" +msgstr "" + +#: stock/models.py:136 stock/models.py:811 +#: stock/templates/stock/location.html:17 +#: stock/templates/stock/stock_app_base.html:8 +msgid "Stock Location" +msgstr "" + +#: stock/models.py:137 stock/templates/stock/location.html:183 +#: templates/InvenTree/search.html:166 templates/js/translated/search.js:178 +#: users/models.py:205 +msgid "Stock Locations" +msgstr "" + +#: stock/models.py:185 stock/models.py:972 +#: stock/templates/stock/item_base.html:243 +msgid "Owner" +msgstr "" + +#: stock/models.py:186 stock/models.py:973 +msgid "Select Owner" +msgstr "" + +#: stock/models.py:194 +msgid "Stock items may not be directly located into a structural stock locations, but may be located to child locations." +msgstr "" + +#: stock/models.py:201 templates/js/translated/stock.js:2866 +#: templates/js/translated/table_filters.js:250 +msgid "External" +msgstr "" + +#: stock/models.py:202 +msgid "This is an external stock location" +msgstr "" + +#: stock/models.py:208 templates/js/translated/stock.js:2875 +#: templates/js/translated/table_filters.js:253 +msgid "Location type" +msgstr "" + +#: stock/models.py:212 +msgid "Stock location type of this location" +msgstr "" + +#: stock/models.py:284 +msgid "You cannot make this stock location structural because some stock items are already located into it!" +msgstr "" + +#: stock/models.py:668 +msgid "Stock items cannot be located into structural stock locations!" +msgstr "" + +#: stock/models.py:695 stock/serializers.py:487 +msgid "Stock item cannot be created for virtual parts" +msgstr "" + +#: stock/models.py:712 +#, python-brace-format +msgid "Part type ('{self.supplier_part.part}') must be {self.part}" +msgstr "" + +#: stock/models.py:722 stock/models.py:735 +msgid "Quantity must be 1 for item with a serial number" +msgstr "" + +#: stock/models.py:725 +msgid "Serial number cannot be set if quantity greater than 1" +msgstr "" + +#: stock/models.py:747 +msgid "Item cannot belong to itself" +msgstr "" + +#: stock/models.py:752 +msgid "Item must have a build reference if is_building=True" +msgstr "" + +#: stock/models.py:765 +msgid "Build reference does not point to the same part object" +msgstr "" + +#: stock/models.py:781 +msgid "Parent Stock Item" +msgstr "" + +#: stock/models.py:793 +msgid "Base part" +msgstr "" + +#: stock/models.py:803 +msgid "Select a matching supplier part for this stock item" +msgstr "" + +#: stock/models.py:815 +msgid "Where is this stock item located?" +msgstr "" + +#: stock/models.py:823 stock/serializers.py:1587 +msgid "Packaging this stock item is stored in" +msgstr "" + +#: stock/models.py:834 +msgid "Is this item installed in another item?" +msgstr "" + +#: stock/models.py:853 +msgid "Serial number for this item" +msgstr "" + +#: stock/models.py:867 stock/serializers.py:1570 +msgid "Batch code for this stock item" +msgstr "" + +#: stock/models.py:872 +msgid "Stock Quantity" +msgstr "" + +#: stock/models.py:882 +msgid "Source Build" +msgstr "" + +#: stock/models.py:885 +msgid "Build for this stock item" +msgstr "" + +#: stock/models.py:892 stock/templates/stock/item_base.html:359 +msgid "Consumed By" +msgstr "" + +#: stock/models.py:895 +msgid "Build order which consumed this stock item" +msgstr "" + +#: stock/models.py:904 +msgid "Source Purchase Order" +msgstr "" + +#: stock/models.py:908 +msgid "Purchase order for this stock item" +msgstr "" + +#: stock/models.py:914 +msgid "Destination Sales Order" +msgstr "" + +#: stock/models.py:925 +msgid "Expiry date for stock item. Stock will be considered expired after this date" +msgstr "" + +#: stock/models.py:943 +msgid "Delete on deplete" +msgstr "" + +#: stock/models.py:944 +msgid "Delete this Stock Item when stock is depleted" +msgstr "" + +#: stock/models.py:964 +msgid "Single unit purchase price at time of purchase" +msgstr "" + +#: stock/models.py:995 +msgid "Converted to part" +msgstr "" + +#: stock/models.py:1506 +msgid "Part is not set as trackable" +msgstr "" + +#: stock/models.py:1512 +msgid "Quantity must be integer" +msgstr "" + +#: stock/models.py:1520 +#, python-brace-format +msgid "Quantity must not exceed available stock quantity ({self.quantity})" +msgstr "" + +#: stock/models.py:1526 +msgid "Serial numbers must be a list of integers" +msgstr "" + +#: stock/models.py:1531 +msgid "Quantity does not match serial numbers" +msgstr "" + +#: stock/models.py:1539 stock/serializers.py:733 +msgid "Serial numbers already exist" +msgstr "" + +#: stock/models.py:1636 stock/models.py:2436 +msgid "Test template does not exist" +msgstr "" + +#: stock/models.py:1654 +msgid "Stock item has been assigned to a sales order" +msgstr "" + +#: stock/models.py:1658 +msgid "Stock item is installed in another item" +msgstr "" + +#: stock/models.py:1661 +msgid "Stock item contains other items" +msgstr "" + +#: stock/models.py:1664 +msgid "Stock item has been assigned to a customer" +msgstr "" + +#: stock/models.py:1667 +msgid "Stock item is currently in production" +msgstr "" + +#: stock/models.py:1670 +msgid "Serialized stock cannot be merged" +msgstr "" + +#: stock/models.py:1677 stock/serializers.py:1476 +msgid "Duplicate stock items" +msgstr "" + +#: stock/models.py:1681 +msgid "Stock items must refer to the same part" +msgstr "" + +#: stock/models.py:1689 +msgid "Stock items must refer to the same supplier part" +msgstr "" + +#: stock/models.py:1694 +msgid "Stock status codes must match" +msgstr "" + +#: stock/models.py:1955 +msgid "StockItem cannot be moved as it is not in stock" +msgstr "" + +#: stock/models.py:2335 +msgid "Stock Item Tracking" +msgstr "" + +#: stock/models.py:2368 +msgid "Entry notes" +msgstr "" + +#: stock/models.py:2408 +msgid "Stock Item Test Result" +msgstr "" + +#: stock/models.py:2439 +msgid "Value must be provided for this test" +msgstr "" + +#: stock/models.py:2443 +msgid "Attachment must be uploaded for this test" +msgstr "" + +#: stock/models.py:2448 +msgid "Invalid value for this test" +msgstr "" + +#: stock/models.py:2533 +msgid "Test result" +msgstr "" + +#: stock/models.py:2540 +msgid "Test output value" +msgstr "" + +#: stock/models.py:2548 stock/serializers.py:245 +msgid "Test result attachment" +msgstr "" + +#: stock/models.py:2552 +msgid "Test notes" +msgstr "" + +#: stock/models.py:2560 templates/js/translated/stock.js:1633 +msgid "Test station" +msgstr "" + +#: stock/models.py:2561 +msgid "The identifier of the test station where the test was performed" +msgstr "" + +#: stock/models.py:2567 +msgid "Started" +msgstr "" + +#: stock/models.py:2568 +msgid "The timestamp of the test start" +msgstr "" + +#: stock/models.py:2574 +msgid "Finished" +msgstr "" + +#: stock/models.py:2575 +msgid "The timestamp of the test finish" +msgstr "" + +#: stock/serializers.py:77 +msgid "Generated batch code" +msgstr "" + +#: stock/serializers.py:86 +msgid "Select build order" +msgstr "" + +#: stock/serializers.py:95 +msgid "Select stock item to generate batch code for" +msgstr "" + +#: stock/serializers.py:104 +msgid "Select location to generate batch code for" +msgstr "" + +#: stock/serializers.py:113 +msgid "Select part to generate batch code for" +msgstr "" + +#: stock/serializers.py:122 +msgid "Select purchase order" +msgstr "" + +#: stock/serializers.py:129 +msgid "Enter quantity for batch code" +msgstr "" + +#: stock/serializers.py:152 +msgid "Generated serial number" +msgstr "" + +#: stock/serializers.py:161 +msgid "Select part to generate serial number for" +msgstr "" + +#: stock/serializers.py:169 +msgid "Quantity of serial numbers to generate" +msgstr "" + +#: stock/serializers.py:234 +msgid "Test template for this result" +msgstr "" + +#: stock/serializers.py:258 +msgid "Template ID or test name must be provided" +msgstr "" + +#: stock/serializers.py:290 +msgid "The test finished time cannot be earlier than the test started time" +msgstr "" + +#: stock/serializers.py:327 +msgid "Serial number is too large" +msgstr "" + +#: stock/serializers.py:459 stock/templates/stock/item_base.html:189 +msgid "Parent Item" +msgstr "" + +#: stock/serializers.py:460 +msgid "Parent stock item" +msgstr "" + +#: stock/serializers.py:479 +msgid "Use pack size when adding: the quantity defined is the number of packs" +msgstr "" + +#: stock/serializers.py:603 stock/templates/stock/item_base.html:433 +#: templates/js/translated/table_filters.js:442 users/models.py:174 +msgid "Expired" +msgstr "" + +#: stock/serializers.py:609 stock/templates/stock/stock_sidebar.html:20 +msgid "Child Items" +msgstr "" + +#: stock/serializers.py:613 +msgid "Tracking Items" +msgstr "" + +#: stock/serializers.py:619 +msgid "Purchase price of this stock item, per unit or pack" +msgstr "" + +#: stock/serializers.py:638 +msgid "Minimum Pricing" +msgstr "" + +#: stock/serializers.py:644 +msgid "Maximum Pricing" +msgstr "" + +#: stock/serializers.py:668 +msgid "Enter number of stock items to serialize" +msgstr "" + +#: stock/serializers.py:681 +#, python-brace-format +msgid "Quantity must not exceed available stock quantity ({q})" +msgstr "" + +#: stock/serializers.py:688 +msgid "Enter serial numbers for new items" +msgstr "" + +#: stock/serializers.py:699 stock/serializers.py:1433 stock/serializers.py:1689 +msgid "Destination stock location" +msgstr "" + +#: stock/serializers.py:706 +msgid "Optional note field" +msgstr "" + +#: stock/serializers.py:716 +msgid "Serial numbers cannot be assigned to this part" +msgstr "" + +#: stock/serializers.py:771 +msgid "Select stock item to install" +msgstr "" + +#: stock/serializers.py:778 +msgid "Quantity to Install" +msgstr "" + +#: stock/serializers.py:779 +msgid "Enter the quantity of items to install" +msgstr "" + +#: stock/serializers.py:784 stock/serializers.py:864 stock/serializers.py:990 +#: stock/serializers.py:1040 +msgid "Add transaction note (optional)" +msgstr "" + +#: stock/serializers.py:792 +msgid "Quantity to install must be at least 1" +msgstr "" + +#: stock/serializers.py:800 +msgid "Stock item is unavailable" +msgstr "" + +#: stock/serializers.py:811 +msgid "Selected part is not in the Bill of Materials" +msgstr "" + +#: stock/serializers.py:824 +msgid "Quantity to install must not exceed available quantity" +msgstr "" + +#: stock/serializers.py:859 +msgid "Destination location for uninstalled item" +msgstr "" + +#: stock/serializers.py:910 +msgid "Unsupported statistic type: " +msgstr "" + +#: stock/serializers.py:924 +msgid "Select part to convert stock item into" +msgstr "" + +#: stock/serializers.py:937 +msgid "Selected part is not a valid option for conversion" +msgstr "" + +#: stock/serializers.py:954 +msgid "Cannot convert stock item with assigned SupplierPart" +msgstr "" + +#: stock/serializers.py:985 +msgid "Destination location for returned item" +msgstr "" + +#: stock/serializers.py:1022 +msgid "Select stock items to change status" +msgstr "" + +#: stock/serializers.py:1028 +msgid "No stock items selected" +msgstr "" + +#: stock/serializers.py:1124 stock/serializers.py:1201 +#: stock/templates/stock/location.html:162 +#: stock/templates/stock/location.html:219 +#: stock/templates/stock/location_sidebar.html:5 +msgid "Sublocations" +msgstr "" + +#: stock/serializers.py:1194 templates/js/translated/stock.js:160 +msgid "Parent stock location" +msgstr "" + +#: stock/serializers.py:1305 +msgid "Part must be salable" +msgstr "" + +#: stock/serializers.py:1309 +msgid "Item is allocated to a sales order" +msgstr "" + +#: stock/serializers.py:1313 +msgid "Item is allocated to a build order" +msgstr "" + +#: stock/serializers.py:1337 +msgid "Customer to assign stock items" +msgstr "" + +#: stock/serializers.py:1343 +msgid "Selected company is not a customer" +msgstr "" + +#: stock/serializers.py:1351 +msgid "Stock assignment notes" +msgstr "" + +#: stock/serializers.py:1361 stock/serializers.py:1615 +msgid "A list of stock items must be provided" +msgstr "" + +#: stock/serializers.py:1440 +msgid "Stock merging notes" +msgstr "" + +#: stock/serializers.py:1445 +msgid "Allow mismatched suppliers" +msgstr "" + +#: stock/serializers.py:1446 +msgid "Allow stock items with different supplier parts to be merged" +msgstr "" + +#: stock/serializers.py:1451 +msgid "Allow mismatched status" +msgstr "" + +#: stock/serializers.py:1452 +msgid "Allow stock items with different status codes to be merged" +msgstr "" + +#: stock/serializers.py:1462 +msgid "At least two stock items must be provided" +msgstr "" + +#: stock/serializers.py:1529 +msgid "No Change" +msgstr "" + +#: stock/serializers.py:1558 +msgid "StockItem primary key value" +msgstr "" + +#: stock/serializers.py:1577 +msgid "Stock item status code" +msgstr "" + +#: stock/serializers.py:1605 +msgid "Stock transaction notes" +msgstr "" + +#: stock/status_codes.py:11 +msgid "OK" +msgstr "" + +#: stock/status_codes.py:12 +msgid "Attention needed" +msgstr "" + +#: stock/status_codes.py:13 +msgid "Damaged" +msgstr "" + +#: stock/status_codes.py:14 +msgid "Destroyed" +msgstr "" + +#: stock/status_codes.py:15 +msgid "Rejected" +msgstr "" + +#: stock/status_codes.py:19 +msgid "Quarantined" +msgstr "" + +#: stock/status_codes.py:44 +msgid "Legacy stock tracking entry" +msgstr "" + +#: stock/status_codes.py:46 templates/js/translated/stock.js:550 +msgid "Stock item created" +msgstr "" + +#: stock/status_codes.py:49 +msgid "Edited stock item" +msgstr "" + +#: stock/status_codes.py:50 +msgid "Assigned serial number" +msgstr "" + +#: stock/status_codes.py:53 +msgid "Stock counted" +msgstr "" + +#: stock/status_codes.py:54 +msgid "Stock manually added" +msgstr "" + +#: stock/status_codes.py:55 +msgid "Stock manually removed" +msgstr "" + +#: stock/status_codes.py:58 +msgid "Location changed" +msgstr "" + +#: stock/status_codes.py:59 +msgid "Stock updated" +msgstr "" + +#: stock/status_codes.py:62 +msgid "Installed into assembly" +msgstr "" + +#: stock/status_codes.py:63 +msgid "Removed from assembly" +msgstr "" + +#: stock/status_codes.py:65 +msgid "Installed component item" +msgstr "" + +#: stock/status_codes.py:66 +msgid "Removed component item" +msgstr "" + +#: stock/status_codes.py:69 +msgid "Split from parent item" +msgstr "" + +#: stock/status_codes.py:70 +msgid "Split child item" +msgstr "" + +#: stock/status_codes.py:73 templates/js/translated/stock.js:1944 +msgid "Merged stock items" +msgstr "" + +#: stock/status_codes.py:76 +msgid "Converted to variant" +msgstr "" + +#: stock/status_codes.py:79 +msgid "Build order output created" +msgstr "" + +#: stock/status_codes.py:80 +msgid "Build order output completed" +msgstr "" + +#: stock/status_codes.py:81 +msgid "Build order output rejected" +msgstr "" + +#: stock/status_codes.py:82 templates/js/translated/stock.js:1849 +msgid "Consumed by build order" +msgstr "" + +#: stock/status_codes.py:85 +msgid "Shipped against Sales Order" +msgstr "" + +#: stock/status_codes.py:88 +msgid "Received against Purchase Order" +msgstr "" + +#: stock/status_codes.py:91 +msgid "Returned against Return Order" +msgstr "" + +#: stock/status_codes.py:94 templates/js/translated/table_filters.js:382 +msgid "Sent to customer" +msgstr "" + +#: stock/status_codes.py:95 +msgid "Returned from customer" +msgstr "" + +#: stock/templates/stock/item.html:17 +msgid "Stock Tracking Information" +msgstr "" + +#: stock/templates/stock/item.html:63 +msgid "Child Stock Items" +msgstr "" + +#: stock/templates/stock/item.html:72 +msgid "This stock item does not have any child items" +msgstr "" + +#: stock/templates/stock/item.html:81 +#: stock/templates/stock/stock_sidebar.html:12 +msgid "Test Data" +msgstr "" + +#: stock/templates/stock/item.html:85 +msgid "Test Report" +msgstr "" + +#: stock/templates/stock/item.html:89 stock/templates/stock/item.html:276 +msgid "Delete Test Data" +msgstr "" + +#: stock/templates/stock/item.html:93 +msgid "Add Test Data" +msgstr "" + +#: stock/templates/stock/item.html:125 +msgid "Stock Item Notes" +msgstr "" + +#: stock/templates/stock/item.html:140 +msgid "Installed Stock Items" +msgstr "" + +#: stock/templates/stock/item.html:145 templates/js/translated/stock.js:3355 +msgid "Install Stock Item" +msgstr "" + +#: stock/templates/stock/item.html:264 +msgid "Delete all test results for this stock item" +msgstr "" + +#: stock/templates/stock/item.html:294 templates/js/translated/stock.js:1786 +msgid "Add Test Result" +msgstr "" + +#: stock/templates/stock/item_base.html:33 +msgid "Locate stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:51 +msgid "Scan to Location" +msgstr "" + +#: stock/templates/stock/item_base.html:58 +#: stock/templates/stock/location.html:67 +#: templates/js/translated/filters.js:434 +msgid "Printing actions" +msgstr "" + +#: stock/templates/stock/item_base.html:63 templates/js/translated/report.js:49 +msgid "Print Report" +msgstr "" + +#: stock/templates/stock/item_base.html:71 +msgid "Stock adjustment actions" +msgstr "" + +#: stock/templates/stock/item_base.html:75 +#: stock/templates/stock/location.html:87 templates/js/translated/stock.js:1909 +msgid "Count stock" +msgstr "" + +#: stock/templates/stock/item_base.html:77 +#: templates/js/translated/stock.js:1891 +msgid "Add stock" +msgstr "" + +#: stock/templates/stock/item_base.html:78 +#: templates/js/translated/stock.js:1900 +msgid "Remove stock" +msgstr "" + +#: stock/templates/stock/item_base.html:81 +msgid "Serialize stock" +msgstr "" + +#: stock/templates/stock/item_base.html:84 +#: stock/templates/stock/location.html:93 templates/js/translated/stock.js:1918 +msgid "Transfer stock" +msgstr "" + +#: stock/templates/stock/item_base.html:87 +#: templates/js/translated/stock.js:1973 +msgid "Assign to customer" +msgstr "" + +#: stock/templates/stock/item_base.html:90 +msgid "Return to stock" +msgstr "" + +#: stock/templates/stock/item_base.html:93 +msgid "Uninstall stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:93 +msgid "Uninstall" +msgstr "" + +#: stock/templates/stock/item_base.html:97 +msgid "Install stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:97 +msgid "Install" +msgstr "" + +#: stock/templates/stock/item_base.html:111 +msgid "Convert to variant" +msgstr "" + +#: stock/templates/stock/item_base.html:114 +msgid "Duplicate stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:116 +msgid "Edit stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:119 +msgid "Delete stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:165 templates/InvenTree/search.html:139 +#: templates/js/translated/build.js:2298 templates/navbar.html:38 +msgid "Build" +msgstr "" + +#: stock/templates/stock/item_base.html:207 +msgid "No manufacturer set" +msgstr "" + +#: stock/templates/stock/item_base.html:247 +msgid "You are not in the list of owners of this item. This stock item cannot be edited." +msgstr "" + +#: stock/templates/stock/item_base.html:248 +#: stock/templates/stock/location.html:146 +msgid "Read only" +msgstr "" + +#: stock/templates/stock/item_base.html:261 +msgid "This stock item is unavailable" +msgstr "" + +#: stock/templates/stock/item_base.html:267 +msgid "This stock item is in production and cannot be edited." +msgstr "" + +#: stock/templates/stock/item_base.html:268 +msgid "Edit the stock item from the build view." +msgstr "" + +#: stock/templates/stock/item_base.html:283 +msgid "This stock item is allocated to Sales Order" +msgstr "" + +#: stock/templates/stock/item_base.html:291 +msgid "This stock item is allocated to Build Order" +msgstr "" + +#: stock/templates/stock/item_base.html:307 +msgid "This stock item is serialized. It has a unique serial number and the quantity cannot be adjusted" +msgstr "" + +#: stock/templates/stock/item_base.html:313 +msgid "previous page" +msgstr "" + +#: stock/templates/stock/item_base.html:313 +msgid "Navigate to previous serial number" +msgstr "" + +#: stock/templates/stock/item_base.html:322 +msgid "next page" +msgstr "" + +#: stock/templates/stock/item_base.html:322 +msgid "Navigate to next serial number" +msgstr "" + +#: stock/templates/stock/item_base.html:394 +#: templates/js/translated/build.js:2555 +msgid "No location set" +msgstr "" + +#: stock/templates/stock/item_base.html:409 +msgid "Tests" +msgstr "" + +#: stock/templates/stock/item_base.html:415 +msgid "This stock item has not passed all required tests" +msgstr "" + +#: stock/templates/stock/item_base.html:433 +#, python-format +msgid "This StockItem expired on %(item.expiry_date)s" +msgstr "" + +#: stock/templates/stock/item_base.html:435 +#, python-format +msgid "This StockItem expires on %(item.expiry_date)s" +msgstr "" + +#: stock/templates/stock/item_base.html:451 +msgid "No stocktake performed" +msgstr "" + +#: stock/templates/stock/item_base.html:500 +#: templates/js/translated/stock.js:2038 +msgid "stock item" +msgstr "" + +#: stock/templates/stock/item_base.html:523 +msgid "Edit Stock Status" +msgstr "" + +#: stock/templates/stock/item_base.html:532 +msgid "Stock Item QR Code" +msgstr "" + +#: stock/templates/stock/item_base.html:543 +msgid "Link Barcode to Stock Item" +msgstr "" + +#: stock/templates/stock/item_base.html:607 +msgid "Select one of the part variants listed below." +msgstr "" + +#: stock/templates/stock/item_base.html:610 +msgid "Warning" +msgstr "" + +#: stock/templates/stock/item_base.html:611 +msgid "This action cannot be easily undone" +msgstr "" + +#: stock/templates/stock/item_base.html:619 +msgid "Convert Stock Item" +msgstr "" + +#: stock/templates/stock/item_base.html:652 +msgid "Return to Stock" +msgstr "" + +#: stock/templates/stock/item_serialize.html:5 +msgid "Create serialized items from this stock item." +msgstr "" + +#: stock/templates/stock/item_serialize.html:7 +msgid "Select quantity to serialize, and unique serial numbers." +msgstr "" + +#: stock/templates/stock/location.html:35 +msgid "Perform stocktake for this stock location" +msgstr "" + +#: stock/templates/stock/location.html:42 +msgid "Locate stock location" +msgstr "" + +#: stock/templates/stock/location.html:60 +msgid "Scan stock items into this location" +msgstr "" + +#: stock/templates/stock/location.html:60 +msgid "Scan In Stock Items" +msgstr "" + +#: stock/templates/stock/location.html:61 +msgid "Scan stock container into this location" +msgstr "" + +#: stock/templates/stock/location.html:61 +msgid "Scan In Container" +msgstr "" + +#: stock/templates/stock/location.html:72 +msgid "Print Location Report" +msgstr "" + +#: stock/templates/stock/location.html:101 +msgid "Location actions" +msgstr "" + +#: stock/templates/stock/location.html:103 +msgid "Edit location" +msgstr "" + +#: stock/templates/stock/location.html:105 +msgid "Delete location" +msgstr "" + +#: stock/templates/stock/location.html:135 +msgid "Top level stock location" +msgstr "" + +#: stock/templates/stock/location.html:141 +msgid "Location Owner" +msgstr "" + +#: stock/templates/stock/location.html:145 +msgid "You are not in the list of owners of this location. This stock location cannot be edited." +msgstr "" + +#: stock/templates/stock/location.html:173 +msgid "Location Type" +msgstr "" + +#: stock/templates/stock/location.html:223 +msgid "Create new stock location" +msgstr "" + +#: stock/templates/stock/location.html:224 +msgid "New Location" +msgstr "" + +#: stock/templates/stock/location.html:298 +#: templates/js/translated/stock.js:2658 +msgid "stock location" +msgstr "" + +#: stock/templates/stock/location.html:320 +msgid "Scanned stock container into this location" +msgstr "" + +#: stock/templates/stock/location.html:393 +msgid "Stock Location QR Code" +msgstr "" + +#: stock/templates/stock/location.html:404 +msgid "Link Barcode to Stock Location" +msgstr "" + +#: stock/templates/stock/stock_app_base.html:16 +msgid "Loading..." +msgstr "" + +#: stock/templates/stock/stock_sidebar.html:5 +msgid "Stock Tracking" +msgstr "" + +#: stock/templates/stock/stock_sidebar.html:8 +msgid "Allocations" +msgstr "" + +#: templates/403.html:6 templates/403.html:12 templates/403_csrf.html:7 +msgid "Permission Denied" +msgstr "" + +#: templates/403.html:15 +msgid "You do not have permission to view this page." +msgstr "" + +#: templates/403_csrf.html:11 +msgid "Authentication Failure" +msgstr "" + +#: templates/403_csrf.html:14 +msgid "You have been logged out from InvenTree." +msgstr "" + +#: templates/403_csrf.html:19 templates/InvenTree/settings/sidebar.html:29 +#: templates/navbar.html:150 +msgid "Login" +msgstr "" + +#: templates/404.html:6 templates/404.html:12 +msgid "Page Not Found" +msgstr "" + +#: templates/404.html:15 +msgid "The requested page does not exist" +msgstr "" + +#: templates/500.html:6 templates/500.html:12 +msgid "Internal Server Error" +msgstr "" + +#: templates/500.html:15 +#, python-format +msgid "The %(inventree_title)s server raised an internal error" +msgstr "" + +#: templates/500.html:16 +msgid "Refer to the error log in the admin interface for further details" +msgstr "" + +#: templates/503.html:11 templates/503.html:33 +msgid "Site is in Maintenance" +msgstr "" + +#: templates/503.html:39 +msgid "The site is currently in maintenance and should be up again soon!" +msgstr "" + +#: templates/InvenTree/index.html:7 +msgid "Index" +msgstr "" + +#: templates/InvenTree/index.html:39 +msgid "Subscribed Parts" +msgstr "" + +#: templates/InvenTree/index.html:52 +msgid "Subscribed Categories" +msgstr "" + +#: templates/InvenTree/index.html:62 +msgid "Latest Parts" +msgstr "" + +#: templates/InvenTree/index.html:77 +msgid "BOM Waiting Validation" +msgstr "" + +#: templates/InvenTree/index.html:106 +msgid "Recently Updated" +msgstr "" + +#: templates/InvenTree/index.html:134 +msgid "Depleted Stock" +msgstr "" + +#: templates/InvenTree/index.html:148 +msgid "Required for Build Orders" +msgstr "" + +#: templates/InvenTree/index.html:156 +msgid "Expired Stock" +msgstr "" + +#: templates/InvenTree/index.html:172 +msgid "Stale Stock" +msgstr "" + +#: templates/InvenTree/index.html:199 +msgid "Build Orders In Progress" +msgstr "" + +#: templates/InvenTree/index.html:210 +msgid "Overdue Build Orders" +msgstr "" + +#: templates/InvenTree/index.html:230 +msgid "Outstanding Purchase Orders" +msgstr "" + +#: templates/InvenTree/index.html:241 +msgid "Overdue Purchase Orders" +msgstr "" + +#: templates/InvenTree/index.html:262 +msgid "Outstanding Sales Orders" +msgstr "" + +#: templates/InvenTree/index.html:273 +msgid "Overdue Sales Orders" +msgstr "" + +#: templates/InvenTree/index.html:299 +msgid "InvenTree News" +msgstr "" + +#: templates/InvenTree/index.html:301 +msgid "Current News" +msgstr "" + +#: templates/InvenTree/notifications/history.html:9 +msgid "Notification History" +msgstr "" + +#: templates/InvenTree/notifications/history.html:13 +#: templates/InvenTree/notifications/history.html:14 +#: templates/InvenTree/notifications/notifications.html:75 +msgid "Delete Notifications" +msgstr "" + +#: templates/InvenTree/notifications/inbox.html:9 +msgid "Pending Notifications" +msgstr "" + +#: templates/InvenTree/notifications/inbox.html:13 +#: templates/InvenTree/notifications/inbox.html:14 +msgid "Mark all as read" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:10 +#: templates/InvenTree/notifications/sidebar.html:5 +#: templates/InvenTree/settings/sidebar.html:17 +#: templates/InvenTree/settings/sidebar.html:37 templates/notifications.html:5 +msgid "Notifications" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:38 +msgid "No unread notifications found" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:58 +msgid "No notification history found" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:65 +msgid "Delete all read notifications" +msgstr "" + +#: templates/InvenTree/notifications/notifications.html:89 +#: templates/js/translated/notification.js:85 +msgid "Delete Notification" +msgstr "" + +#: templates/InvenTree/notifications/sidebar.html:8 +msgid "Inbox" +msgstr "" + +#: templates/InvenTree/notifications/sidebar.html:10 +msgid "History" +msgstr "" + +#: templates/InvenTree/search.html:8 +msgid "Search Results" +msgstr "" + +#: templates/InvenTree/settings/barcode.html:8 +msgid "Barcode Settings" +msgstr "" + +#: templates/InvenTree/settings/build.html:8 +msgid "Build Order Settings" +msgstr "" + +#: templates/InvenTree/settings/category.html:7 +msgid "Category Settings" +msgstr "" + +#: templates/InvenTree/settings/global.html:8 +msgid "Server Settings" +msgstr "" + +#: templates/InvenTree/settings/label.html:8 +#: templates/InvenTree/settings/user_labels.html:9 +msgid "Label Settings" +msgstr "" + +#: templates/InvenTree/settings/login.html:8 +msgid "Login Settings" +msgstr "" + +#: templates/InvenTree/settings/login.html:15 +msgid "Outgoing email has not been configured. Some login and sign-up features may not work correctly!" +msgstr "" + +#: templates/InvenTree/settings/login.html:27 templates/account/signup.html:5 +#: templates/socialaccount/signup.html:5 +msgid "Signup" +msgstr "" + +#: templates/InvenTree/settings/login.html:36 +msgid "Single Sign On" +msgstr "" + +#: templates/InvenTree/settings/mixins/settings.html:5 +#: templates/InvenTree/settings/settings.html:12 templates/navbar.html:147 +msgid "Settings" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:5 +msgid "URLs" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:8 +#, python-format +msgid "The Base-URL for this plugin is %(base)s." +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:14 +msgid "URL" +msgstr "" + +#: templates/InvenTree/settings/mixins/urls.html:23 +msgid "Open in new tab" +msgstr "" + +#: templates/InvenTree/settings/notifications.html:9 +#: templates/InvenTree/settings/user_notifications.html:9 +msgid "Notification Settings" +msgstr "" + +#: templates/InvenTree/settings/notifications.html:18 +msgid "Slug" +msgstr "" + +#: templates/InvenTree/settings/part.html:7 +msgid "Part Settings" +msgstr "" + +#: templates/InvenTree/settings/part.html:44 +msgid "Part Import" +msgstr "" + +#: templates/InvenTree/settings/part.html:48 +msgid "Import Part" +msgstr "" + +#: templates/InvenTree/settings/part_parameters.html:20 +msgid "Part Parameter Templates" +msgstr "" + +#: templates/InvenTree/settings/part_stocktake.html:7 +msgid "Stocktake Settings" +msgstr "" + +#: templates/InvenTree/settings/part_stocktake.html:25 +msgid "Stocktake Reports" +msgstr "" + +#: templates/InvenTree/settings/physical_units.html:8 +#: templates/InvenTree/settings/sidebar.html:35 +msgid "Physical Units" +msgstr "" + +#: templates/InvenTree/settings/physical_units.html:12 +msgid "Add Unit" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:9 +#: templates/InvenTree/settings/sidebar.html:64 +msgid "Plugin Settings" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:15 +msgid "Changing the settings below require you to immediately restart the server. Do not change this while under active usage." +msgstr "" + +#: templates/InvenTree/settings/plugin.html:38 +#: templates/InvenTree/settings/sidebar.html:66 +msgid "Plugins" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:44 +#: templates/InvenTree/settings/plugin.html:45 +#: templates/js/translated/plugin.js:151 +msgid "Install Plugin" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:47 +#: templates/InvenTree/settings/plugin.html:48 +#: templates/js/translated/plugin.js:224 +msgid "Reload Plugins" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:58 +msgid "External plugins are not enabled for this InvenTree installation" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:73 +msgid "Plugin Error Stack" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:82 +msgid "Stage" +msgstr "" + +#: templates/InvenTree/settings/plugin.html:84 +#: templates/js/translated/notification.js:76 +msgid "Message" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:16 +msgid "Plugin information" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:47 +msgid "no version information supplied" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:61 +msgid "License" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:70 +msgid "The code information is pulled from the latest git commit for this plugin. It might not reflect official version numbers or information but the actual code running." +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:76 +msgid "Package information" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:82 +msgid "Installation method" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:85 +msgid "This plugin was installed as a package" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:87 +msgid "This plugin was found in a local server path" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:93 +msgid "Installation path" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:100 +#: templates/js/translated/plugin.js:68 +#: templates/js/translated/table_filters.js:517 +msgid "Builtin" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:101 +msgid "This is a builtin plugin which cannot be disabled" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:107 +#: templates/js/translated/plugin.js:72 +#: templates/js/translated/table_filters.js:521 +msgid "Sample" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:108 +msgid "This is a sample plugin" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:113 +msgid "Commit Author" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:117 +#: templates/about.html:36 +msgid "Commit Date" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:121 +#: templates/about.html:29 +msgid "Commit Hash" +msgstr "" + +#: templates/InvenTree/settings/plugin_settings.html:125 +msgid "Commit Message" +msgstr "" + +#: templates/InvenTree/settings/po.html:7 +msgid "Purchase Order Settings" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:7 +msgid "Pricing Settings" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:35 +msgid "Exchange Rates" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:39 +msgid "Update Now" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:47 +#: templates/InvenTree/settings/pricing.html:51 +msgid "Last Update" +msgstr "" + +#: templates/InvenTree/settings/pricing.html:51 +msgid "Never" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:8 +msgid "Project Code Settings" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:21 +#: templates/InvenTree/settings/sidebar.html:33 +msgid "Project Codes" +msgstr "" + +#: templates/InvenTree/settings/project_codes.html:25 +#: templates/InvenTree/settings/settings_staff_js.html:216 +msgid "New Project Code" +msgstr "" + +#: templates/InvenTree/settings/report.html:8 +#: templates/InvenTree/settings/user_reporting.html:9 +msgid "Report Settings" +msgstr "" + +#: templates/InvenTree/settings/returns.html:7 +msgid "Return Order Settings" +msgstr "" + +#: templates/InvenTree/settings/setting.html:31 +msgid "No value set" +msgstr "" + +#: templates/InvenTree/settings/setting.html:46 +msgid "Edit setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:58 +msgid "Edit Plugin Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:60 +msgid "Edit Notification Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:63 +msgid "Edit Global Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_js.html:65 +msgid "Edit User Setting" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:49 +msgid "Rate" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:81 +#: templates/js/translated/forms.js:548 templates/js/translated/helpers.js:108 +#: templates/js/translated/part.js:395 templates/js/translated/pricing.js:629 +#: templates/js/translated/stock.js:252 users/models.py:407 +msgid "Delete" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:95 +msgid "Edit Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:110 +msgid "Delete Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:124 +msgid "New Custom Unit" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:140 +msgid "No project codes found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:158 +#: templates/js/translated/build.js:2403 +msgid "group" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:175 +#: templates/InvenTree/settings/settings_staff_js.html:189 +msgid "Edit Project Code" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:176 +#: templates/InvenTree/settings/settings_staff_js.html:203 +msgid "Delete Project Code" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:285 +msgid "No category parameter templates found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:308 +#: templates/js/translated/part.js:1652 +msgid "Edit Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:309 +#: templates/js/translated/part.js:1653 +msgid "Delete Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:326 +msgid "Edit Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:352 +msgid "Delete Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:387 +msgid "Create Category Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:416 +msgid "Create Part Parameter Template" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:439 +msgid "No stock location types found" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:464 +msgid "Location count" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:469 +#: templates/InvenTree/settings/settings_staff_js.html:483 +msgid "Edit Location Type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:470 +msgid "Delete Location type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:493 +msgid "Delete Location Type" +msgstr "" + +#: templates/InvenTree/settings/settings_staff_js.html:503 +#: templates/InvenTree/settings/stock.html:39 +msgid "New Location Type" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:6 +#: templates/InvenTree/settings/user_settings.html:9 +msgid "User Settings" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:9 +msgid "Account" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:11 +msgid "Display" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:13 +msgid "Home Page" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:15 +#: templates/js/translated/forms.js:2200 templates/js/translated/tables.js:543 +#: templates/navbar.html:107 templates/search.html:8 +#: templates/search_form.html:6 templates/search_form.html:7 +msgid "Search" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:19 +#: templates/InvenTree/settings/sidebar.html:43 +msgid "Reporting" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:24 +msgid "Global Settings" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:27 templates/stats.html:9 +msgid "Server" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:41 +msgid "Labels" +msgstr "" + +#: templates/InvenTree/settings/sidebar.html:45 +msgid "Categories" +msgstr "" + +#: templates/InvenTree/settings/so.html:7 +msgid "Sales Order Settings" +msgstr "" + +#: templates/InvenTree/settings/stock.html:7 +msgid "Stock Settings" +msgstr "" + +#: templates/InvenTree/settings/stock.html:35 +msgid "Stock Location Types" +msgstr "" + +#: templates/InvenTree/settings/user.html:13 +msgid "Account Settings" +msgstr "" + +#: templates/InvenTree/settings/user.html:19 +#: templates/account/password_reset_from_key.html:4 +#: templates/account/password_reset_from_key.html:7 +msgid "Change Password" +msgstr "" + +#: templates/InvenTree/settings/user.html:55 +msgid "The following email addresses are associated with your account:" +msgstr "" + +#: templates/InvenTree/settings/user.html:76 +msgid "Verified" +msgstr "" + +#: templates/InvenTree/settings/user.html:78 +msgid "Unverified" +msgstr "" + +#: templates/InvenTree/settings/user.html:80 +#: templates/js/translated/company.js:957 +msgid "Primary" +msgstr "" + +#: templates/InvenTree/settings/user.html:86 +msgid "Make Primary" +msgstr "" + +#: templates/InvenTree/settings/user.html:87 +msgid "Re-send Verification" +msgstr "" + +#: templates/InvenTree/settings/user.html:96 +msgid "Warning:" +msgstr "" + +#: templates/InvenTree/settings/user.html:97 +msgid "You currently do not have any email address set up. You should really add an email address so you can receive notifications, reset your password, etc." +msgstr "" + +#: templates/InvenTree/settings/user.html:105 +msgid "Add Email Address" +msgstr "" + +#: templates/InvenTree/settings/user.html:110 +msgid "Add Email" +msgstr "" + +#: templates/InvenTree/settings/user.html:120 +msgid "Multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:125 +msgid "You have these factors available:" +msgstr "" + +#: templates/InvenTree/settings/user.html:135 +msgid "TOTP" +msgstr "" + +#: templates/InvenTree/settings/user.html:141 +msgid "Static" +msgstr "" + +#: templates/InvenTree/settings/user.html:150 +msgid "Multifactor authentication is not configured for your account" +msgstr "" + +#: templates/InvenTree/settings/user.html:157 +msgid "Change factors" +msgstr "" + +#: templates/InvenTree/settings/user.html:158 +msgid "Setup multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:160 +msgid "Remove multifactor" +msgstr "" + +#: templates/InvenTree/settings/user.html:171 +msgid "Active Sessions" +msgstr "" + +#: templates/InvenTree/settings/user.html:177 +msgid "Log out active sessions (except this one)" +msgstr "" + +#: templates/InvenTree/settings/user.html:178 +msgid "Log Out Active Sessions" +msgstr "" + +#: templates/InvenTree/settings/user.html:187 +msgid "unknown on unknown" +msgstr "" + +#: templates/InvenTree/settings/user.html:188 +msgid "unknown" +msgstr "" + +#: templates/InvenTree/settings/user.html:192 +msgid "IP Address" +msgstr "" + +#: templates/InvenTree/settings/user.html:193 +msgid "Device" +msgstr "" + +#: templates/InvenTree/settings/user.html:194 +msgid "Last Activity" +msgstr "" + +#: templates/InvenTree/settings/user.html:207 +#, python-format +msgid "%(time)s ago (this session)" +msgstr "" + +#: templates/InvenTree/settings/user.html:209 +#, python-format +msgid "%(time)s ago" +msgstr "" + +#: templates/InvenTree/settings/user.html:223 +msgid "Do you really want to remove the selected email address?" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:9 +msgid "Display Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:29 +msgid "Theme Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:39 +msgid "Select theme" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:50 +msgid "Set Theme" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:58 +msgid "Language Settings" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:67 +msgid "Select language" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:83 +#, python-format +msgid "%(lang_translated)s%% translated" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:85 +msgid "No translations available" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:92 +msgid "Set Language" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:95 +msgid "Some languages are not complete" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:97 +msgid "Show only sufficient" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:99 +msgid "and hidden." +msgstr "" + +#: templates/InvenTree/settings/user_display.html:99 +msgid "Show them too" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:106 +msgid "Help the translation efforts!" +msgstr "" + +#: templates/InvenTree/settings/user_display.html:107 +msgid "Native language translation of the web application is community contributed via crowdin. Contributions are welcomed and encouraged." +msgstr "" + +#: templates/InvenTree/settings/user_display.html:108 +msgid "InvenTree Translation Project" +msgstr "" + +#: templates/InvenTree/settings/user_homepage.html:9 +msgid "Home Page Settings" +msgstr "" + +#: templates/InvenTree/settings/user_search.html:9 +msgid "Search Settings" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:9 +msgid "Single Sign On Accounts" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:16 +msgid "You can sign in to your account using any of the following third party accounts:" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:52 +msgid "There are no social network accounts connected to this account." +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:58 +msgid "Add SSO Account" +msgstr "" + +#: templates/InvenTree/settings/user_sso.html:67 +msgid "Single Sign On is not enabled for this server" +msgstr "" + +#: templates/about.html:9 +msgid "InvenTree Version" +msgstr "" + +#: templates/about.html:14 +msgid "Development Version" +msgstr "" + +#: templates/about.html:17 +msgid "Up to Date" +msgstr "" + +#: templates/about.html:19 +msgid "Update Available" +msgstr "" + +#: templates/about.html:43 +msgid "Commit Branch" +msgstr "" + +#: templates/about.html:49 +msgid "InvenTree Documentation" +msgstr "" + +#: templates/about.html:54 +msgid "API Version" +msgstr "" + +#: templates/about.html:59 +msgid "Python Version" +msgstr "" + +#: templates/about.html:64 +msgid "Django Version" +msgstr "" + +#: templates/about.html:69 +msgid "View Code on GitHub" +msgstr "" + +#: templates/about.html:74 +msgid "Credits" +msgstr "" + +#: templates/about.html:79 +msgid "Mobile App" +msgstr "" + +#: templates/about.html:84 +msgid "Submit Bug Report" +msgstr "" + +#: templates/about.html:91 templates/clip.html:4 +#: templates/js/translated/helpers.js:592 +msgid "copy to clipboard" +msgstr "" + +#: templates/about.html:91 +msgid "copy version information" +msgstr "" + +#: templates/account/base.html:66 templates/navbar.html:17 +msgid "InvenTree logo" +msgstr "" + +#: templates/account/email_confirm.html:6 +#: templates/account/email_confirm.html:9 +msgid "Confirm Email Address" +msgstr "" + +#: templates/account/email_confirm.html:15 +#, python-format +msgid "Please confirm that %(email)s is an email address for user %(user_display)s." +msgstr "" + +#: templates/account/email_confirm.html:21 templates/js/translated/forms.js:775 +msgid "Confirm" +msgstr "" + +#: templates/account/email_confirm.html:29 +#, python-format +msgid "This email confirmation link expired or is invalid. Please issue a new email confirmation request." +msgstr "" + +#: templates/account/login.html:6 templates/account/login.html:19 +#: templates/account/login.html:40 templates/socialaccount/login.html:5 +msgid "Sign In" +msgstr "" + +#: templates/account/login.html:23 +msgid "Not a member?" +msgstr "" + +#: templates/account/login.html:25 templates/account/signup.html:11 +#: templates/account/signup.html:22 templates/socialaccount/signup.html:8 +#: templates/socialaccount/signup.html:23 +msgid "Sign Up" +msgstr "" + +#: templates/account/login.html:47 +msgid "Forgot Password?" +msgstr "" + +#: templates/account/login.html:55 +msgid "or log in with" +msgstr "" + +#: templates/account/logout.html:5 templates/account/logout.html:8 +#: templates/account/logout.html:20 +msgid "Sign Out" +msgstr "" + +#: templates/account/logout.html:10 +msgid "Are you sure you want to sign out?" +msgstr "" + +#: templates/account/logout.html:27 templates/allauth_2fa/backup_tokens.html:35 +#: templates/allauth_2fa/remove.html:24 templates/allauth_2fa/setup.html:45 +msgid "Return to Site" +msgstr "" + +#: templates/account/password_reset.html:5 +#: templates/account/password_reset.html:12 +msgid "Password Reset" +msgstr "" + +#: templates/account/password_reset.html:18 +msgid "Forgotten your password? Enter your email address below, and we'll send you an email allowing you to reset it." +msgstr "" + +#: templates/account/password_reset.html:23 +msgid "Reset My Password" +msgstr "" + +#: templates/account/password_reset.html:27 templates/account/signup.html:37 +msgid "This function is currently disabled. Please contact an administrator." +msgstr "" + +#: templates/account/password_reset_from_key.html:7 +msgid "Bad Token" +msgstr "" + +#: templates/account/password_reset_from_key.html:11 +#, python-format +msgid "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." +msgstr "" + +#: templates/account/password_reset_from_key.html:18 +msgid "Change password" +msgstr "" + +#: templates/account/password_reset_from_key.html:22 +msgid "Your password is now changed." +msgstr "" + +#: templates/account/signup.html:13 +#, python-format +msgid "Already have an account? Then please sign in." +msgstr "" + +#: templates/account/signup.html:28 +msgid "Use a SSO-provider for signup" +msgstr "" + +#: templates/account/signup_closed.html:5 +#: templates/account/signup_closed.html:8 +msgid "Sign Up Closed" +msgstr "" + +#: templates/account/signup_closed.html:10 +msgid "Sign up is currently closed." +msgstr "" + +#: templates/account/signup_closed.html:15 +#: templates/socialaccount/authentication_error.html:19 +#: templates/socialaccount/login.html:38 templates/socialaccount/signup.html:30 +msgid "Return to login page" +msgstr "" + +#: templates/admin_button.html:8 +msgid "View in administration panel" +msgstr "" + +#: templates/allauth_2fa/authenticate.html:5 +msgid "Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/authenticate.html:13 +msgid "Authenticate" +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:6 +msgid "Two-Factor Authentication Backup Tokens" +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:17 +msgid "Backup tokens have been generated, but are not revealed here for security reasons. Press the button below to generate new ones." +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:20 +msgid "No backup tokens are available. Press the button below to generate some." +msgstr "" + +#: templates/allauth_2fa/backup_tokens.html:28 +msgid "Generate Tokens" +msgstr "" + +#: templates/allauth_2fa/remove.html:6 +msgid "Disable Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/remove.html:9 +msgid "Are you sure?" +msgstr "" + +#: templates/allauth_2fa/remove.html:17 +msgid "Disable 2FA" +msgstr "" + +#: templates/allauth_2fa/setup.html:6 +msgid "Setup Two-Factor Authentication" +msgstr "" + +#: templates/allauth_2fa/setup.html:10 +msgid "Step 1" +msgstr "" + +#: templates/allauth_2fa/setup.html:14 +msgid "Scan the QR code below with a token generator of your choice (for instance Google Authenticator)." +msgstr "" + +#: templates/allauth_2fa/setup.html:20 +msgid "Secret: " +msgstr "" + +#: templates/allauth_2fa/setup.html:24 +msgid "Step 2" +msgstr "" + +#: templates/allauth_2fa/setup.html:28 +msgid "Input a token generated by the app:" +msgstr "" + +#: templates/allauth_2fa/setup.html:38 +msgid "Verify" +msgstr "" + +#: templates/attachment_button.html:4 templates/js/translated/attachment.js:70 +msgid "Add Link" +msgstr "" + +#: templates/attachment_button.html:7 templates/js/translated/attachment.js:48 +msgid "Add Attachment" +msgstr "" + +#: templates/barcode_data.html:5 +msgid "Barcode Identifier" +msgstr "" + +#: templates/base.html:102 +msgid "Server Restart Required" +msgstr "" + +#: templates/base.html:105 +msgid "A configuration option has been changed which requires a server restart" +msgstr "" + +#: templates/base.html:105 templates/base.html:115 +msgid "Contact your system administrator for further information" +msgstr "" + +#: templates/base.html:112 +msgid "Pending Database Migrations" +msgstr "" + +#: templates/base.html:115 +msgid "There are pending database migrations which require attention" +msgstr "" + +#: templates/email/build_order_completed.html:9 +#: templates/email/canceled_order_assigned.html:9 +#: templates/email/new_order_assigned.html:9 +#: templates/email/overdue_build_order.html:9 +#: templates/email/overdue_purchase_order.html:9 +#: templates/email/overdue_sales_order.html:9 +#: templates/email/purchase_order_received.html:9 +#: templates/email/return_order_received.html:9 +msgid "Click on the following link to view this order" +msgstr "" + +#: templates/email/build_order_required_stock.html:7 +msgid "Stock is required for the following build order" +msgstr "" + +#: templates/email/build_order_required_stock.html:8 +#, python-format +msgid "Build order %(build)s - building %(quantity)s x %(part)s" +msgstr "" + +#: templates/email/build_order_required_stock.html:10 +msgid "Click on the following link to view this build order" +msgstr "" + +#: templates/email/build_order_required_stock.html:14 +msgid "The following parts are low on required stock" +msgstr "" + +#: templates/email/build_order_required_stock.html:18 +#: templates/js/translated/bom.js:1674 templates/js/translated/build.js:2750 +msgid "Required Quantity" +msgstr "" + +#: templates/email/build_order_required_stock.html:38 +#: templates/email/low_stock_notification.html:30 +msgid "You are receiving this email because you are subscribed to notifications for this part " +msgstr "" + +#: templates/email/low_stock_notification.html:9 +msgid "Click on the following link to view this part" +msgstr "" + +#: templates/email/low_stock_notification.html:18 +#: templates/js/translated/part.js:3237 +msgid "Minimum Quantity" +msgstr "" + +#: templates/js/translated/api.js:225 templates/js/translated/modals.js:1135 +msgid "No Response" +msgstr "" + +#: templates/js/translated/api.js:226 templates/js/translated/modals.js:1136 +msgid "No response from the InvenTree server" +msgstr "" + +#: templates/js/translated/api.js:232 +msgid "Error 400: Bad request" +msgstr "" + +#: templates/js/translated/api.js:233 +msgid "API request returned error code 400" +msgstr "" + +#: templates/js/translated/api.js:237 templates/js/translated/modals.js:1145 +msgid "Error 401: Not Authenticated" +msgstr "" + +#: templates/js/translated/api.js:238 templates/js/translated/modals.js:1146 +msgid "Authentication credentials not supplied" +msgstr "" + +#: templates/js/translated/api.js:242 templates/js/translated/modals.js:1150 +msgid "Error 403: Permission Denied" +msgstr "" + +#: templates/js/translated/api.js:243 templates/js/translated/modals.js:1151 +msgid "You do not have the required permissions to access this function" +msgstr "" + +#: templates/js/translated/api.js:247 templates/js/translated/modals.js:1155 +msgid "Error 404: Resource Not Found" +msgstr "" + +#: templates/js/translated/api.js:248 templates/js/translated/modals.js:1156 +msgid "The requested resource could not be located on the server" +msgstr "" + +#: templates/js/translated/api.js:252 +msgid "Error 405: Method Not Allowed" +msgstr "" + +#: templates/js/translated/api.js:253 +msgid "HTTP method not allowed at URL" +msgstr "" + +#: templates/js/translated/api.js:257 templates/js/translated/modals.js:1160 +msgid "Error 408: Timeout" +msgstr "" + +#: templates/js/translated/api.js:258 templates/js/translated/modals.js:1161 +msgid "Connection timeout while requesting data from server" +msgstr "" + +#: templates/js/translated/api.js:261 +msgid "Error 503: Service Unavailable" +msgstr "" + +#: templates/js/translated/api.js:262 +msgid "The server is currently unavailable" +msgstr "" + +#: templates/js/translated/api.js:265 +msgid "Unhandled Error Code" +msgstr "" + +#: templates/js/translated/api.js:266 +msgid "Error code" +msgstr "" + +#: templates/js/translated/attachment.js:114 +msgid "All selected attachments will be deleted" +msgstr "" + +#: templates/js/translated/attachment.js:129 +msgid "Delete Attachments" +msgstr "" + +#: templates/js/translated/attachment.js:205 +msgid "Delete attachments" +msgstr "" + +#: templates/js/translated/attachment.js:260 +msgid "Attachment actions" +msgstr "" + +#: templates/js/translated/attachment.js:294 +msgid "No attachments found" +msgstr "" + +#: templates/js/translated/attachment.js:334 +msgid "Edit Attachment" +msgstr "" + +#: templates/js/translated/attachment.js:365 +msgid "Upload Date" +msgstr "" + +#: templates/js/translated/attachment.js:385 +msgid "Edit attachment" +msgstr "" + +#: templates/js/translated/attachment.js:393 +msgid "Delete attachment" +msgstr "" + +#: templates/js/translated/barcode.js:43 +msgid "Scan barcode data here using barcode scanner" +msgstr "" + +#: templates/js/translated/barcode.js:45 +msgid "Enter barcode data" +msgstr "" + +#: templates/js/translated/barcode.js:59 +msgid "Scan barcode using connected webcam" +msgstr "" + +#: templates/js/translated/barcode.js:138 +msgid "Enter optional notes for stock transfer" +msgstr "" + +#: templates/js/translated/barcode.js:139 +msgid "Enter notes" +msgstr "" + +#: templates/js/translated/barcode.js:188 +msgid "Server error" +msgstr "" + +#: templates/js/translated/barcode.js:217 +msgid "Unknown response from server" +msgstr "" + +#: templates/js/translated/barcode.js:252 +#: templates/js/translated/modals.js:1125 +msgid "Invalid server response" +msgstr "" + +#: templates/js/translated/barcode.js:403 +msgid "Scan barcode data" +msgstr "" + +#: templates/js/translated/barcode.js:451 templates/navbar.html:114 +msgid "Scan Barcode" +msgstr "" + +#: templates/js/translated/barcode.js:489 +msgid "No URL in response" +msgstr "" + +#: templates/js/translated/barcode.js:529 +msgid "This will remove the link to the associated barcode" +msgstr "" + +#: templates/js/translated/barcode.js:535 +msgid "Unlink" +msgstr "" + +#: templates/js/translated/barcode.js:598 templates/js/translated/stock.js:1188 +msgid "Remove stock item" +msgstr "" + +#: templates/js/translated/barcode.js:641 +msgid "Scan Stock Items Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:643 +msgid "Scan stock item barcode to check in to this location" +msgstr "" + +#: templates/js/translated/barcode.js:646 +#: templates/js/translated/barcode.js:843 +msgid "Check In" +msgstr "" + +#: templates/js/translated/barcode.js:678 +msgid "No barcode provided" +msgstr "" + +#: templates/js/translated/barcode.js:718 +msgid "Stock Item already scanned" +msgstr "" + +#: templates/js/translated/barcode.js:722 +msgid "Stock Item already in this location" +msgstr "" + +#: templates/js/translated/barcode.js:729 +msgid "Added stock item" +msgstr "" + +#: templates/js/translated/barcode.js:738 +msgid "Barcode does not match valid stock item" +msgstr "" + +#: templates/js/translated/barcode.js:757 +msgid "Scan Stock Container Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:759 +msgid "Scan stock container barcode to check in to this location" +msgstr "" + +#: templates/js/translated/barcode.js:793 +msgid "Barcode does not match valid stock location" +msgstr "" + +#: templates/js/translated/barcode.js:837 +msgid "Check Into Location" +msgstr "" + +#: templates/js/translated/barcode.js:906 +#: templates/js/translated/barcode.js:915 +msgid "Barcode does not match a valid location" +msgstr "" + +#: templates/js/translated/bom.js:78 +msgid "Create BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:132 +msgid "Display row data" +msgstr "" + +#: templates/js/translated/bom.js:188 +msgid "Row Data" +msgstr "" + +#: templates/js/translated/bom.js:189 templates/js/translated/bom.js:700 +#: templates/js/translated/modals.js:75 templates/js/translated/modals.js:629 +#: templates/js/translated/modals.js:757 templates/js/translated/modals.js:1065 +#: templates/js/translated/purchase_order.js:797 templates/modals.html:15 +#: templates/modals.html:27 templates/modals.html:39 templates/modals.html:50 +msgid "Close" +msgstr "" + +#: templates/js/translated/bom.js:306 +msgid "Download BOM Template" +msgstr "" + +#: templates/js/translated/bom.js:351 +msgid "Multi Level BOM" +msgstr "" + +#: templates/js/translated/bom.js:352 +msgid "Include BOM data for subassemblies" +msgstr "" + +#: templates/js/translated/bom.js:357 +msgid "Levels" +msgstr "" + +#: templates/js/translated/bom.js:358 +msgid "Select maximum number of BOM levels to export (0 = all levels)" +msgstr "" + +#: templates/js/translated/bom.js:365 +msgid "Include Alternative Parts" +msgstr "" + +#: templates/js/translated/bom.js:366 +msgid "Include alternative parts in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:371 +msgid "Include Parameter Data" +msgstr "" + +#: templates/js/translated/bom.js:372 +msgid "Include part parameter data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:377 +msgid "Include Stock Data" +msgstr "" + +#: templates/js/translated/bom.js:378 +msgid "Include part stock data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:383 +msgid "Include Manufacturer Data" +msgstr "" + +#: templates/js/translated/bom.js:384 +msgid "Include part manufacturer data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:389 +msgid "Include Supplier Data" +msgstr "" + +#: templates/js/translated/bom.js:390 +msgid "Include part supplier data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:395 +msgid "Include Pricing Data" +msgstr "" + +#: templates/js/translated/bom.js:396 +msgid "Include part pricing data in exported BOM" +msgstr "" + +#: templates/js/translated/bom.js:591 +msgid "Remove substitute part" +msgstr "" + +#: templates/js/translated/bom.js:645 +msgid "Select and add a new substitute part using the input below" +msgstr "" + +#: templates/js/translated/bom.js:656 +msgid "Are you sure you wish to remove this substitute part link?" +msgstr "" + +#: templates/js/translated/bom.js:662 +msgid "Remove Substitute Part" +msgstr "" + +#: templates/js/translated/bom.js:701 +msgid "Add Substitute" +msgstr "" + +#: templates/js/translated/bom.js:702 +msgid "Edit BOM Item Substitutes" +msgstr "" + +#: templates/js/translated/bom.js:764 +msgid "All selected BOM items will be deleted" +msgstr "" + +#: templates/js/translated/bom.js:780 +msgid "Delete selected BOM items?" +msgstr "" + +#: templates/js/translated/bom.js:826 +msgid "Delete items" +msgstr "" + +#: templates/js/translated/bom.js:936 +msgid "Load BOM for subassembly" +msgstr "" + +#: templates/js/translated/bom.js:946 +msgid "Substitutes Available" +msgstr "" + +#: templates/js/translated/bom.js:950 templates/js/translated/build.js:2676 +msgid "Variant stock allowed" +msgstr "" + +#: templates/js/translated/bom.js:1014 +msgid "Substitutes" +msgstr "" + +#: templates/js/translated/bom.js:1139 +msgid "BOM pricing is complete" +msgstr "" + +#: templates/js/translated/bom.js:1144 +msgid "BOM pricing is incomplete" +msgstr "" + +#: templates/js/translated/bom.js:1151 +msgid "No pricing available" +msgstr "" + +#: templates/js/translated/bom.js:1184 templates/js/translated/build.js:2815 +msgid "External stock" +msgstr "" + +#: templates/js/translated/bom.js:1188 templates/js/translated/build.js:2789 +#: templates/js/translated/sales_order.js:1946 +msgid "No Stock Available" +msgstr "" + +#: templates/js/translated/bom.js:1193 templates/js/translated/build.js:2793 +msgid "Includes variant and substitute stock" +msgstr "" + +#: templates/js/translated/bom.js:1195 templates/js/translated/build.js:2795 +#: templates/js/translated/part.js:1263 +#: templates/js/translated/sales_order.js:1943 +msgid "Includes variant stock" +msgstr "" + +#: templates/js/translated/bom.js:1197 templates/js/translated/build.js:2797 +msgid "Includes substitute stock" +msgstr "" + +#: templates/js/translated/bom.js:1225 templates/js/translated/build.js:2780 +msgid "Consumable item" +msgstr "" + +#: templates/js/translated/bom.js:1285 +msgid "Validate BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1287 +msgid "This line has been validated" +msgstr "" + +#: templates/js/translated/bom.js:1289 +msgid "Edit substitute parts" +msgstr "" + +#: templates/js/translated/bom.js:1291 templates/js/translated/bom.js:1486 +msgid "Edit BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1293 +msgid "Delete BOM Item" +msgstr "" + +#: templates/js/translated/bom.js:1313 +msgid "View BOM" +msgstr "" + +#: templates/js/translated/bom.js:1397 +msgid "No BOM items found" +msgstr "" + +#: templates/js/translated/bom.js:1657 templates/js/translated/build.js:2661 +msgid "Required Part" +msgstr "" + +#: templates/js/translated/bom.js:1683 +msgid "Inherited from parent BOM" +msgstr "" + +#: templates/js/translated/build.js:143 +msgid "Edit Build Order" +msgstr "" + +#: templates/js/translated/build.js:194 +msgid "Create Build Order" +msgstr "" + +#: templates/js/translated/build.js:226 +msgid "Cancel Build Order" +msgstr "" + +#: templates/js/translated/build.js:235 +msgid "Are you sure you wish to cancel this build?" +msgstr "" + +#: templates/js/translated/build.js:241 +msgid "Stock items have been allocated to this build order" +msgstr "" + +#: templates/js/translated/build.js:248 +msgid "There are incomplete outputs remaining for this build order" +msgstr "" + +#: templates/js/translated/build.js:300 +msgid "Build order is ready to be completed" +msgstr "" + +#: templates/js/translated/build.js:308 +msgid "This build order cannot be completed as there are incomplete outputs" +msgstr "" + +#: templates/js/translated/build.js:313 +msgid "Build Order is incomplete" +msgstr "" + +#: templates/js/translated/build.js:331 +msgid "Complete Build Order" +msgstr "" + +#: templates/js/translated/build.js:372 templates/js/translated/stock.js:127 +#: templates/js/translated/stock.js:301 +msgid "Next available serial number" +msgstr "" + +#: templates/js/translated/build.js:374 templates/js/translated/stock.js:129 +#: templates/js/translated/stock.js:303 +msgid "Latest serial number" +msgstr "" + +#: templates/js/translated/build.js:383 +msgid "The Bill of Materials contains trackable parts" +msgstr "" + +#: templates/js/translated/build.js:384 +msgid "Build outputs must be generated individually" +msgstr "" + +#: templates/js/translated/build.js:392 +msgid "Trackable parts can have serial numbers specified" +msgstr "" + +#: templates/js/translated/build.js:393 +msgid "Enter serial numbers to generate multiple single build outputs" +msgstr "" + +#: templates/js/translated/build.js:400 +msgid "Create Build Output" +msgstr "" + +#: templates/js/translated/build.js:431 +msgid "Allocate stock items to this build output" +msgstr "" + +#: templates/js/translated/build.js:439 +msgid "Deallocate stock from build output" +msgstr "" + +#: templates/js/translated/build.js:448 +msgid "Complete build output" +msgstr "" + +#: templates/js/translated/build.js:456 +msgid "Scrap build output" +msgstr "" + +#: templates/js/translated/build.js:463 +msgid "Delete build output" +msgstr "" + +#: templates/js/translated/build.js:483 +msgid "Are you sure you wish to deallocate the selected stock items from this build?" +msgstr "" + +#: templates/js/translated/build.js:501 +msgid "Deallocate Stock Items" +msgstr "" + +#: templates/js/translated/build.js:587 templates/js/translated/build.js:714 +#: templates/js/translated/build.js:839 +msgid "Select Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:588 templates/js/translated/build.js:715 +#: templates/js/translated/build.js:840 +msgid "At least one build output must be selected" +msgstr "" + +#: templates/js/translated/build.js:602 +msgid "Selected build outputs will be marked as complete" +msgstr "" + +#: templates/js/translated/build.js:606 templates/js/translated/build.js:739 +#: templates/js/translated/build.js:862 +msgid "Output" +msgstr "" + +#: templates/js/translated/build.js:633 +msgid "Complete Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:730 +msgid "Selected build outputs will be marked as scrapped" +msgstr "" + +#: templates/js/translated/build.js:732 +msgid "Scrapped output are marked as rejected" +msgstr "" + +#: templates/js/translated/build.js:733 +msgid "Allocated stock items will no longer be available" +msgstr "" + +#: templates/js/translated/build.js:734 +msgid "The completion status of the build order will not be adjusted" +msgstr "" + +#: templates/js/translated/build.js:764 +msgid "Scrap Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:854 +msgid "Selected build outputs will be deleted" +msgstr "" + +#: templates/js/translated/build.js:856 +msgid "Build output data will be permanently deleted" +msgstr "" + +#: templates/js/translated/build.js:857 +msgid "Allocated stock items will be returned to stock" +msgstr "" + +#: templates/js/translated/build.js:875 +msgid "Delete Build Outputs" +msgstr "" + +#: templates/js/translated/build.js:962 +msgid "Delete allocations" +msgstr "" + +#: templates/js/translated/build.js:969 +msgid "Delete Stock Allocations" +msgstr "" + +#: templates/js/translated/build.js:992 +msgid "No allocated stock" +msgstr "" + +#: templates/js/translated/build.js:1048 +msgid "Stock item" +msgstr "" + +#: templates/js/translated/build.js:1073 +msgid "Edit build allocation" +msgstr "" + +#: templates/js/translated/build.js:1074 +msgid "Delete build allocation" +msgstr "" + +#: templates/js/translated/build.js:1092 +msgid "Edit Build Allocation" +msgstr "" + +#: templates/js/translated/build.js:1105 +msgid "Delete Build Allocation" +msgstr "" + +#: templates/js/translated/build.js:1136 +msgid "No build order allocations found" +msgstr "" + +#: templates/js/translated/build.js:1181 +msgid "Location not specified" +msgstr "" + +#: templates/js/translated/build.js:1203 +msgid "Complete outputs" +msgstr "" + +#: templates/js/translated/build.js:1221 +msgid "Scrap outputs" +msgstr "" + +#: templates/js/translated/build.js:1239 +msgid "Delete outputs" +msgstr "" + +#: templates/js/translated/build.js:1292 +msgid "build output" +msgstr "" + +#: templates/js/translated/build.js:1293 +msgid "build outputs" +msgstr "" + +#: templates/js/translated/build.js:1297 +msgid "Build output actions" +msgstr "" + +#: templates/js/translated/build.js:1473 +msgid "No active build outputs found" +msgstr "" + +#: templates/js/translated/build.js:1566 +msgid "Allocated Lines" +msgstr "" + +#: templates/js/translated/build.js:1580 +msgid "Required Tests" +msgstr "" + +#: templates/js/translated/build.js:1752 +#: templates/js/translated/purchase_order.js:611 +#: templates/js/translated/sales_order.js:1207 +msgid "Select Parts" +msgstr "" + +#: templates/js/translated/build.js:1753 +#: templates/js/translated/sales_order.js:1208 +msgid "You must select at least one part to allocate" +msgstr "" + +#: templates/js/translated/build.js:1816 +#: templates/js/translated/sales_order.js:1157 +msgid "Specify stock allocation quantity" +msgstr "" + +#: templates/js/translated/build.js:1893 +msgid "All Parts Allocated" +msgstr "" + +#: templates/js/translated/build.js:1894 +msgid "All selected parts have been fully allocated" +msgstr "" + +#: templates/js/translated/build.js:1908 +#: templates/js/translated/sales_order.js:1222 +msgid "Select source location (leave blank to take from all locations)" +msgstr "" + +#: templates/js/translated/build.js:1936 +msgid "Allocate Stock Items to Build Order" +msgstr "" + +#: templates/js/translated/build.js:1947 +#: templates/js/translated/sales_order.js:1319 +msgid "No matching stock locations" +msgstr "" + +#: templates/js/translated/build.js:2020 +#: templates/js/translated/sales_order.js:1398 +msgid "No matching stock items" +msgstr "" + +#: templates/js/translated/build.js:2117 +msgid "Automatic Stock Allocation" +msgstr "" + +#: templates/js/translated/build.js:2118 +msgid "Stock items will be automatically allocated to this build order, according to the provided guidelines" +msgstr "" + +#: templates/js/translated/build.js:2120 +msgid "If a location is specified, stock will only be allocated from that location" +msgstr "" + +#: templates/js/translated/build.js:2121 +msgid "If stock is considered interchangeable, it will be allocated from the first location it is found" +msgstr "" + +#: templates/js/translated/build.js:2122 +msgid "If substitute stock is allowed, it will be used where stock of the primary part cannot be found" +msgstr "" + +#: templates/js/translated/build.js:2152 +msgid "Allocate Stock Items" +msgstr "" + +#: templates/js/translated/build.js:2257 +msgid "No builds matching query" +msgstr "" + +#: templates/js/translated/build.js:2292 templates/js/translated/build.js:2655 +#: templates/js/translated/forms.js:2196 templates/js/translated/forms.js:2212 +#: templates/js/translated/part.js:2322 templates/js/translated/part.js:2761 +#: templates/js/translated/stock.js:2069 templates/js/translated/stock.js:2796 +msgid "Select" +msgstr "" + +#: templates/js/translated/build.js:2306 +msgid "Build order is overdue" +msgstr "" + +#: templates/js/translated/build.js:2388 templates/js/translated/stock.js:3127 +msgid "No user information" +msgstr "" + +#: templates/js/translated/build.js:2564 +#: templates/js/translated/sales_order.js:1682 +msgid "Edit stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2565 +#: templates/js/translated/sales_order.js:1683 +msgid "Delete stock allocation" +msgstr "" + +#: templates/js/translated/build.js:2580 +msgid "Edit Allocation" +msgstr "" + +#: templates/js/translated/build.js:2592 +msgid "Remove Allocation" +msgstr "" + +#: templates/js/translated/build.js:2631 +msgid "build line" +msgstr "" + +#: templates/js/translated/build.js:2632 +msgid "build lines" +msgstr "" + +#: templates/js/translated/build.js:2650 +msgid "No build lines found" +msgstr "" + +#: templates/js/translated/build.js:2680 templates/js/translated/part.js:793 +#: templates/js/translated/part.js:1209 +msgid "Trackable part" +msgstr "" + +#: templates/js/translated/build.js:2723 +msgid "Gets Inherited" +msgstr "" + +#: templates/js/translated/build.js:2733 +msgid "Unit Quantity" +msgstr "" + +#: templates/js/translated/build.js:2785 +#: templates/js/translated/sales_order.js:1951 +msgid "Sufficient stock available" +msgstr "" + +#: templates/js/translated/build.js:2840 +msgid "Consumable Item" +msgstr "" + +#: templates/js/translated/build.js:2847 +msgid "Tracked item" +msgstr "" + +#: templates/js/translated/build.js:2848 +msgid "Allocate tracked items against individual build outputs" +msgstr "" + +#: templates/js/translated/build.js:2856 +#: templates/js/translated/sales_order.js:2052 +msgid "Build stock" +msgstr "" + +#: templates/js/translated/build.js:2861 templates/js/translated/stock.js:1954 +msgid "Order stock" +msgstr "" + +#: templates/js/translated/build.js:2865 +#: templates/js/translated/sales_order.js:2046 +msgid "Allocate stock" +msgstr "" + +#: templates/js/translated/build.js:2869 +msgid "Remove stock allocation" +msgstr "" + +#: templates/js/translated/company.js:98 +msgid "Add Manufacturer" +msgstr "" + +#: templates/js/translated/company.js:111 +#: templates/js/translated/company.js:213 +msgid "Add Manufacturer Part" +msgstr "" + +#: templates/js/translated/company.js:132 +msgid "Edit Manufacturer Part" +msgstr "" + +#: templates/js/translated/company.js:201 +#: templates/js/translated/purchase_order.js:93 +msgid "Add Supplier" +msgstr "" + +#: templates/js/translated/company.js:243 +#: templates/js/translated/purchase_order.js:318 +msgid "Add Supplier Part" +msgstr "" + +#: templates/js/translated/company.js:344 +msgid "All selected supplier parts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:360 +msgid "Delete Supplier Parts" +msgstr "" + +#: templates/js/translated/company.js:466 +msgid "Add new Company" +msgstr "" + +#: templates/js/translated/company.js:546 +msgid "Parts Supplied" +msgstr "" + +#: templates/js/translated/company.js:555 +msgid "Parts Manufactured" +msgstr "" + +#: templates/js/translated/company.js:570 +msgid "No company information found" +msgstr "" + +#: templates/js/translated/company.js:619 +msgid "Create New Contact" +msgstr "" + +#: templates/js/translated/company.js:635 +#: templates/js/translated/company.js:758 +msgid "Edit Contact" +msgstr "" + +#: templates/js/translated/company.js:672 +msgid "All selected contacts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:678 +#: templates/js/translated/company.js:742 +msgid "Role" +msgstr "" + +#: templates/js/translated/company.js:686 +msgid "Delete Contacts" +msgstr "" + +#: templates/js/translated/company.js:717 +msgid "No contacts found" +msgstr "" + +#: templates/js/translated/company.js:730 +msgid "Phone Number" +msgstr "" + +#: templates/js/translated/company.js:736 +msgid "Email Address" +msgstr "" + +#: templates/js/translated/company.js:762 +msgid "Delete Contact" +msgstr "" + +#: templates/js/translated/company.js:859 +msgid "Create New Address" +msgstr "" + +#: templates/js/translated/company.js:874 +#: templates/js/translated/company.js:1035 +msgid "Edit Address" +msgstr "" + +#: templates/js/translated/company.js:909 +msgid "All selected addresses will be deleted" +msgstr "" + +#: templates/js/translated/company.js:923 +msgid "Delete Addresses" +msgstr "" + +#: templates/js/translated/company.js:950 +msgid "No addresses found" +msgstr "" + +#: templates/js/translated/company.js:989 +msgid "Postal city" +msgstr "" + +#: templates/js/translated/company.js:995 +msgid "State/province" +msgstr "" + +#: templates/js/translated/company.js:1007 +msgid "Courier notes" +msgstr "" + +#: templates/js/translated/company.js:1013 +msgid "Internal notes" +msgstr "" + +#: templates/js/translated/company.js:1039 +msgid "Delete Address" +msgstr "" + +#: templates/js/translated/company.js:1112 +msgid "All selected manufacturer parts will be deleted" +msgstr "" + +#: templates/js/translated/company.js:1127 +msgid "Delete Manufacturer Parts" +msgstr "" + +#: templates/js/translated/company.js:1161 +msgid "All selected parameters will be deleted" +msgstr "" + +#: templates/js/translated/company.js:1175 +msgid "Delete Parameters" +msgstr "" + +#: templates/js/translated/company.js:1191 +#: templates/js/translated/company.js:1479 templates/js/translated/part.js:2250 +msgid "Order parts" +msgstr "" + +#: templates/js/translated/company.js:1208 +msgid "Delete manufacturer parts" +msgstr "" + +#: templates/js/translated/company.js:1240 +msgid "Manufacturer part actions" +msgstr "" + +#: templates/js/translated/company.js:1259 +msgid "No manufacturer parts found" +msgstr "" + +#: templates/js/translated/company.js:1279 +#: templates/js/translated/company.js:1567 templates/js/translated/part.js:801 +#: templates/js/translated/part.js:1217 +msgid "Template part" +msgstr "" + +#: templates/js/translated/company.js:1283 +#: templates/js/translated/company.js:1571 templates/js/translated/part.js:805 +#: templates/js/translated/part.js:1221 +msgid "Assembled part" +msgstr "" + +#: templates/js/translated/company.js:1403 templates/js/translated/part.js:1471 +msgid "No parameters found" +msgstr "" + +#: templates/js/translated/company.js:1438 templates/js/translated/part.js:1534 +msgid "Edit parameter" +msgstr "" + +#: templates/js/translated/company.js:1439 templates/js/translated/part.js:1535 +msgid "Delete parameter" +msgstr "" + +#: templates/js/translated/company.js:1456 templates/js/translated/part.js:1440 +msgid "Edit Parameter" +msgstr "" + +#: templates/js/translated/company.js:1465 templates/js/translated/part.js:1556 +msgid "Delete Parameter" +msgstr "" + +#: templates/js/translated/company.js:1496 +msgid "Delete supplier parts" +msgstr "" + +#: templates/js/translated/company.js:1546 +msgid "No supplier parts found" +msgstr "" + +#: templates/js/translated/company.js:1664 +msgid "Base Units" +msgstr "" + +#: templates/js/translated/company.js:1694 +msgid "Availability" +msgstr "" + +#: templates/js/translated/company.js:1725 +msgid "Edit supplier part" +msgstr "" + +#: templates/js/translated/company.js:1726 +msgid "Delete supplier part" +msgstr "" + +#: templates/js/translated/company.js:1779 +#: templates/js/translated/pricing.js:694 +msgid "Delete Price Break" +msgstr "" + +#: templates/js/translated/company.js:1789 +#: templates/js/translated/pricing.js:712 +msgid "Edit Price Break" +msgstr "" + +#: templates/js/translated/company.js:1804 +msgid "No price break information found" +msgstr "" + +#: templates/js/translated/company.js:1833 +msgid "Last updated" +msgstr "" + +#: templates/js/translated/company.js:1840 +msgid "Edit price break" +msgstr "" + +#: templates/js/translated/company.js:1841 +msgid "Delete price break" +msgstr "" + +#: templates/js/translated/filters.js:189 +#: templates/js/translated/filters.js:670 +msgid "true" +msgstr "" + +#: templates/js/translated/filters.js:193 +#: templates/js/translated/filters.js:671 +msgid "false" +msgstr "" + +#: templates/js/translated/filters.js:217 +msgid "Select filter" +msgstr "" + +#: templates/js/translated/filters.js:440 +msgid "Print Labels" +msgstr "" + +#: templates/js/translated/filters.js:444 +msgid "Print Reports" +msgstr "" + +#: templates/js/translated/filters.js:456 +msgid "Download table data" +msgstr "" + +#: templates/js/translated/filters.js:463 +msgid "Reload table data" +msgstr "" + +#: templates/js/translated/filters.js:472 +msgid "Add new filter" +msgstr "" + +#: templates/js/translated/filters.js:480 +msgid "Clear all filters" +msgstr "" + +#: templates/js/translated/filters.js:580 +msgid "Create filter" +msgstr "" + +#: templates/js/translated/forms.js:379 templates/js/translated/forms.js:394 +#: templates/js/translated/forms.js:408 templates/js/translated/forms.js:422 +msgid "Action Prohibited" +msgstr "" + +#: templates/js/translated/forms.js:381 +msgid "Create operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:396 +msgid "Update operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:410 +msgid "Delete operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:424 +msgid "View operation not allowed" +msgstr "" + +#: templates/js/translated/forms.js:801 +msgid "Keep this form open" +msgstr "" + +#: templates/js/translated/forms.js:904 +msgid "Enter a valid number" +msgstr "" + +#: templates/js/translated/forms.js:1478 templates/modals.html:19 +#: templates/modals.html:43 +msgid "Form errors exist" +msgstr "" + +#: templates/js/translated/forms.js:2008 +msgid "No results found" +msgstr "" + +#: templates/js/translated/forms.js:2318 templates/js/translated/search.js:239 +msgid "Searching" +msgstr "" + +#: templates/js/translated/forms.js:2532 +msgid "Clear input" +msgstr "" + +#: templates/js/translated/forms.js:3134 +msgid "File Column" +msgstr "" + +#: templates/js/translated/forms.js:3134 +msgid "Field Name" +msgstr "" + +#: templates/js/translated/forms.js:3146 +msgid "Select Columns" +msgstr "" + +#: templates/js/translated/helpers.js:80 +msgid "YES" +msgstr "" + +#: templates/js/translated/helpers.js:83 +msgid "NO" +msgstr "" + +#: templates/js/translated/helpers.js:96 +msgid "True" +msgstr "" + +#: templates/js/translated/helpers.js:97 +msgid "False" +msgstr "" + +#: templates/js/translated/index.js:104 +msgid "No parts required for builds" +msgstr "" + +#: templates/js/translated/label.js:48 templates/js/translated/report.js:38 +msgid "Select Items" +msgstr "" + +#: templates/js/translated/label.js:49 templates/js/translated/report.js:39 +msgid "No items selected for printing" +msgstr "" + +#: templates/js/translated/label.js:143 +msgid "Labels sent to printer" +msgstr "" + +#: templates/js/translated/modals.js:59 templates/js/translated/modals.js:159 +#: templates/js/translated/modals.js:688 +msgid "Cancel" +msgstr "" + +#: templates/js/translated/modals.js:64 templates/js/translated/modals.js:158 +#: templates/js/translated/modals.js:756 templates/js/translated/modals.js:1064 +#: templates/modals.html:28 templates/modals.html:51 +msgid "Submit" +msgstr "" + +#: templates/js/translated/modals.js:157 +msgid "Form Title" +msgstr "" + +#: templates/js/translated/modals.js:446 +msgid "Waiting for server..." +msgstr "" + +#: templates/js/translated/modals.js:597 +msgid "Show Error Information" +msgstr "" + +#: templates/js/translated/modals.js:687 +msgid "Accept" +msgstr "" + +#: templates/js/translated/modals.js:745 +msgid "Loading Data" +msgstr "" + +#: templates/js/translated/modals.js:1016 +msgid "Invalid response from server" +msgstr "" + +#: templates/js/translated/modals.js:1016 +msgid "Form data missing from server response" +msgstr "" + +#: templates/js/translated/modals.js:1028 +msgid "Error posting form data" +msgstr "" + +#: templates/js/translated/modals.js:1125 +msgid "JSON response missing form data" +msgstr "" + +#: templates/js/translated/modals.js:1140 +msgid "Error 400: Bad Request" +msgstr "" + +#: templates/js/translated/modals.js:1141 +msgid "Server returned error code 400" +msgstr "" + +#: templates/js/translated/modals.js:1164 +msgid "Error requesting form data" +msgstr "" + +#: templates/js/translated/news.js:33 +msgid "No news found" +msgstr "" + +#: templates/js/translated/news.js:38 +#: templates/js/translated/notification.js:46 +#: templates/js/translated/part.js:1611 +msgid "ID" +msgstr "" + +#: templates/js/translated/notification.js:52 +msgid "Age" +msgstr "" + +#: templates/js/translated/notification.js:65 +msgid "Notification" +msgstr "" + +#: templates/js/translated/notification.js:224 +msgid "Mark as unread" +msgstr "" + +#: templates/js/translated/notification.js:228 +msgid "Mark as read" +msgstr "" + +#: templates/js/translated/notification.js:254 +msgid "No unread notifications" +msgstr "" + +#: templates/js/translated/notification.js:296 templates/notifications.html:12 +msgid "Notifications will load here" +msgstr "" + +#: templates/js/translated/order.js:48 +msgid "Hold Order" +msgstr "" + +#: templates/js/translated/order.js:53 +msgid "Are you sure you wish to place this order on hold?" +msgstr "" + +#: templates/js/translated/order.js:114 +msgid "Add Extra Line Item" +msgstr "" + +#: templates/js/translated/order.js:151 +msgid "Export Order" +msgstr "" + +#: templates/js/translated/order.js:266 +msgid "Duplicate Line" +msgstr "" + +#: templates/js/translated/order.js:280 +msgid "Edit Line" +msgstr "" + +#: templates/js/translated/order.js:293 +msgid "Delete Line" +msgstr "" + +#: templates/js/translated/order.js:306 +#: templates/js/translated/purchase_order.js:2060 +msgid "No line items found" +msgstr "" + +#: templates/js/translated/order.js:394 +msgid "Duplicate line" +msgstr "" + +#: templates/js/translated/order.js:395 +msgid "Edit line" +msgstr "" + +#: templates/js/translated/order.js:399 +msgid "Delete line" +msgstr "" + +#: templates/js/translated/part.js:91 +msgid "Part Attributes" +msgstr "" + +#: templates/js/translated/part.js:95 +msgid "Part Creation Options" +msgstr "" + +#: templates/js/translated/part.js:99 +msgid "Part Duplication Options" +msgstr "" + +#: templates/js/translated/part.js:122 +msgid "Add Part Category" +msgstr "" + +#: templates/js/translated/part.js:334 templates/js/translated/stock.js:147 +#: templates/js/translated/stock.js:182 +msgid "Icon (optional) - Explore all available icons on" +msgstr "" + +#: templates/js/translated/part.js:355 +msgid "Create Part Category" +msgstr "" + +#: templates/js/translated/part.js:358 +msgid "Create new category after this one" +msgstr "" + +#: templates/js/translated/part.js:359 +msgid "Part category created" +msgstr "" + +#: templates/js/translated/part.js:373 +msgid "Edit Part Category" +msgstr "" + +#: templates/js/translated/part.js:386 +msgid "Are you sure you want to delete this part category?" +msgstr "" + +#: templates/js/translated/part.js:391 +msgid "Move to parent category" +msgstr "" + +#: templates/js/translated/part.js:400 +msgid "Delete Part Category" +msgstr "" + +#: templates/js/translated/part.js:404 +msgid "Action for parts in this category" +msgstr "" + +#: templates/js/translated/part.js:409 +msgid "Action for child categories" +msgstr "" + +#: templates/js/translated/part.js:433 +msgid "Create Part" +msgstr "" + +#: templates/js/translated/part.js:435 +msgid "Create another part after this one" +msgstr "" + +#: templates/js/translated/part.js:436 +msgid "Part created successfully" +msgstr "" + +#: templates/js/translated/part.js:464 +msgid "Edit Part" +msgstr "" + +#: templates/js/translated/part.js:466 +msgid "Part edited" +msgstr "" + +#: templates/js/translated/part.js:477 +msgid "Create Part Variant" +msgstr "" + +#: templates/js/translated/part.js:534 +msgid "Active Part" +msgstr "" + +#: templates/js/translated/part.js:535 +msgid "Part cannot be deleted as it is currently active" +msgstr "" + +#: templates/js/translated/part.js:549 +msgid "Deleting this part cannot be reversed" +msgstr "" + +#: templates/js/translated/part.js:551 +msgid "Any stock items for this part will be deleted" +msgstr "" + +#: templates/js/translated/part.js:552 +msgid "This part will be removed from any Bills of Material" +msgstr "" + +#: templates/js/translated/part.js:553 +msgid "All manufacturer and supplier information for this part will be deleted" +msgstr "" + +#: templates/js/translated/part.js:560 +msgid "Delete Part" +msgstr "" + +#: templates/js/translated/part.js:596 +msgid "You are subscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:598 +msgid "You have subscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:603 +msgid "Subscribe to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:605 +msgid "You have unsubscribed to notifications for this item" +msgstr "" + +#: templates/js/translated/part.js:622 +msgid "Validating the BOM will mark each line item as valid" +msgstr "" + +#: templates/js/translated/part.js:632 +msgid "Validate Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:635 +msgid "Validated Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:660 +msgid "Copy Bill of Materials" +msgstr "" + +#: templates/js/translated/part.js:688 +#: templates/js/translated/table_filters.js:755 +msgid "Low stock" +msgstr "" + +#: templates/js/translated/part.js:691 +msgid "No stock available" +msgstr "" + +#: templates/js/translated/part.js:751 +msgid "Demand" +msgstr "" + +#: templates/js/translated/part.js:774 +msgid "Unit" +msgstr "" + +#: templates/js/translated/part.js:797 templates/js/translated/part.js:1213 +msgid "Virtual part" +msgstr "" + +#: templates/js/translated/part.js:809 +msgid "Subscribed part" +msgstr "" + +#: templates/js/translated/part.js:813 +msgid "Salable part" +msgstr "" + +#: templates/js/translated/part.js:896 +msgid "Schedule generation of a new stocktake report." +msgstr "" + +#: templates/js/translated/part.js:896 +msgid "Once complete, the stocktake report will be available for download." +msgstr "" + +#: templates/js/translated/part.js:904 +msgid "Generate Stocktake Report" +msgstr "" + +#: templates/js/translated/part.js:908 +msgid "Stocktake report scheduled" +msgstr "" + +#: templates/js/translated/part.js:1057 +msgid "No stocktake information available" +msgstr "" + +#: templates/js/translated/part.js:1115 templates/js/translated/part.js:1151 +msgid "Edit Stocktake Entry" +msgstr "" + +#: templates/js/translated/part.js:1119 templates/js/translated/part.js:1161 +msgid "Delete Stocktake Entry" +msgstr "" + +#: templates/js/translated/part.js:1288 +msgid "No variants found" +msgstr "" + +#: templates/js/translated/part.js:1606 +msgid "No part parameter templates found" +msgstr "" + +#: templates/js/translated/part.js:1669 +msgid "Edit Part Parameter Template" +msgstr "" + +#: templates/js/translated/part.js:1681 +msgid "Any parameters which reference this template will also be deleted" +msgstr "" + +#: templates/js/translated/part.js:1689 +msgid "Delete Part Parameter Template" +msgstr "" + +#: templates/js/translated/part.js:1723 +#: templates/js/translated/purchase_order.js:1724 +msgid "No purchase orders found" +msgstr "" + +#: templates/js/translated/part.js:1867 +#: templates/js/translated/purchase_order.js:2223 +#: templates/js/translated/return_order.js:754 +#: templates/js/translated/sales_order.js:1911 +msgid "This line item is overdue" +msgstr "" + +#: templates/js/translated/part.js:1913 +#: templates/js/translated/purchase_order.js:2290 +msgid "Receive line item" +msgstr "" + +#: templates/js/translated/part.js:1976 +msgid "Delete part relationship" +msgstr "" + +#: templates/js/translated/part.js:1998 +msgid "Delete Part Relationship" +msgstr "" + +#: templates/js/translated/part.js:2086 templates/js/translated/part.js:2525 +msgid "No parts found" +msgstr "" + +#: templates/js/translated/part.js:2207 +msgid "Set the part category for the selected parts" +msgstr "" + +#: templates/js/translated/part.js:2212 +msgid "Set Part Category" +msgstr "" + +#: templates/js/translated/part.js:2241 +msgid "Set category" +msgstr "" + +#: templates/js/translated/part.js:2293 +msgid "part" +msgstr "" + +#: templates/js/translated/part.js:2294 +msgid "parts" +msgstr "" + +#: templates/js/translated/part.js:2390 +msgid "No category" +msgstr "" + +#: templates/js/translated/part.js:2550 templates/js/translated/part.js:2680 +#: templates/js/translated/stock.js:2755 +msgid "Display as list" +msgstr "" + +#: templates/js/translated/part.js:2566 +msgid "Display as grid" +msgstr "" + +#: templates/js/translated/part.js:2664 +msgid "No subcategories found" +msgstr "" + +#: templates/js/translated/part.js:2700 templates/js/translated/stock.js:2775 +msgid "Display as tree" +msgstr "" + +#: templates/js/translated/part.js:2780 +msgid "Load Subcategories" +msgstr "" + +#: templates/js/translated/part.js:2795 +msgid "Subscribed category" +msgstr "" + +#: templates/js/translated/part.js:2883 +msgid "No test templates matching query" +msgstr "" + +#: templates/js/translated/part.js:2905 templates/js/translated/search.js:342 +msgid "results" +msgstr "" + +#: templates/js/translated/part.js:2955 +msgid "Edit test template" +msgstr "" + +#: templates/js/translated/part.js:2956 +msgid "Delete test template" +msgstr "" + +#: templates/js/translated/part.js:2960 +msgid "This test is defined for a parent part" +msgstr "" + +#: templates/js/translated/part.js:2976 +msgid "Edit Test Result Template" +msgstr "" + +#: templates/js/translated/part.js:2990 +msgid "Delete Test Result Template" +msgstr "" + +#: templates/js/translated/part.js:3069 templates/js/translated/part.js:3070 +msgid "No date specified" +msgstr "" + +#: templates/js/translated/part.js:3072 +msgid "Specified date is in the past" +msgstr "" + +#: templates/js/translated/part.js:3078 +msgid "Speculative" +msgstr "" + +#: templates/js/translated/part.js:3128 +msgid "No scheduling information available for this part" +msgstr "" + +#: templates/js/translated/part.js:3134 +msgid "Error fetching scheduling information for this part" +msgstr "" + +#: templates/js/translated/part.js:3230 +msgid "Scheduled Stock Quantities" +msgstr "" + +#: templates/js/translated/part.js:3246 +msgid "Maximum Quantity" +msgstr "" + +#: templates/js/translated/part.js:3291 +msgid "Minimum Stock Level" +msgstr "" + +#: templates/js/translated/plugin.js:46 +msgid "No plugins found" +msgstr "" + +#: templates/js/translated/plugin.js:58 +msgid "This plugin is no longer installed" +msgstr "" + +#: templates/js/translated/plugin.js:60 +msgid "This plugin is active" +msgstr "" + +#: templates/js/translated/plugin.js:62 +msgid "This plugin is installed but not active" +msgstr "" + +#: templates/js/translated/plugin.js:117 templates/js/translated/plugin.js:186 +msgid "Disable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:119 templates/js/translated/plugin.js:186 +msgid "Enable Plugin" +msgstr "" + +#: templates/js/translated/plugin.js:158 +msgid "The Plugin was installed" +msgstr "" + +#: templates/js/translated/plugin.js:177 +msgid "Are you sure you want to enable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:181 +msgid "Are you sure you want to disable this plugin?" +msgstr "" + +#: templates/js/translated/plugin.js:189 +msgid "Enable" +msgstr "" + +#: templates/js/translated/plugin.js:189 +msgid "Disable" +msgstr "" + +#: templates/js/translated/plugin.js:203 +msgid "Plugin updated" +msgstr "" + +#: templates/js/translated/pricing.js:159 +msgid "Error fetching currency data" +msgstr "" + +#: templates/js/translated/pricing.js:321 +msgid "No BOM data available" +msgstr "" + +#: templates/js/translated/pricing.js:463 +msgid "No supplier pricing data available" +msgstr "" + +#: templates/js/translated/pricing.js:572 +msgid "No price break data available" +msgstr "" + +#: templates/js/translated/pricing.js:755 +msgid "No purchase history data available" +msgstr "" + +#: templates/js/translated/pricing.js:791 +msgid "Purchase Price History" +msgstr "" + +#: templates/js/translated/pricing.js:894 +msgid "No sales history data available" +msgstr "" + +#: templates/js/translated/pricing.js:916 +msgid "Sale Price History" +msgstr "" + +#: templates/js/translated/pricing.js:1005 +msgid "No variant data available" +msgstr "" + +#: templates/js/translated/pricing.js:1045 +msgid "Variant Part" +msgstr "" + +#: templates/js/translated/purchase_order.js:169 +msgid "Select purchase order to duplicate" +msgstr "" + +#: templates/js/translated/purchase_order.js:176 +msgid "Duplicate Line Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:177 +msgid "Duplicate all line items from the selected order" +msgstr "" + +#: templates/js/translated/purchase_order.js:184 +msgid "Duplicate Extra Lines" +msgstr "" + +#: templates/js/translated/purchase_order.js:185 +msgid "Duplicate extra line items from the selected order" +msgstr "" + +#: templates/js/translated/purchase_order.js:206 +msgid "Edit Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:223 +msgid "Duplication Options" +msgstr "" + +#: templates/js/translated/purchase_order.js:431 +msgid "Complete Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:448 +#: templates/js/translated/return_order.js:210 +#: templates/js/translated/sales_order.js:552 +msgid "Mark this order as complete?" +msgstr "" + +#: templates/js/translated/purchase_order.js:454 +msgid "All line items have been received" +msgstr "" + +#: templates/js/translated/purchase_order.js:459 +msgid "This order has line items which have not been marked as received." +msgstr "" + +#: templates/js/translated/purchase_order.js:460 +msgid "Completing this order means that the order and line items will no longer be editable." +msgstr "" + +#: templates/js/translated/purchase_order.js:483 +msgid "Cancel Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:488 +msgid "Are you sure you wish to cancel this purchase order?" +msgstr "" + +#: templates/js/translated/purchase_order.js:494 +msgid "This purchase order can not be cancelled" +msgstr "" + +#: templates/js/translated/purchase_order.js:515 +#: templates/js/translated/return_order.js:164 +msgid "After placing this order, line items will no longer be editable." +msgstr "" + +#: templates/js/translated/purchase_order.js:520 +msgid "Issue Purchase Order" +msgstr "" + +#: templates/js/translated/purchase_order.js:612 +msgid "At least one purchaseable part must be selected" +msgstr "" + +#: templates/js/translated/purchase_order.js:637 +msgid "Quantity to order" +msgstr "" + +#: templates/js/translated/purchase_order.js:646 +msgid "New supplier part" +msgstr "" + +#: templates/js/translated/purchase_order.js:664 +msgid "New purchase order" +msgstr "" + +#: templates/js/translated/purchase_order.js:705 +msgid "Add to purchase order" +msgstr "" + +#: templates/js/translated/purchase_order.js:755 +msgid "Merge" +msgstr "" + +#: templates/js/translated/purchase_order.js:859 +msgid "No matching supplier parts" +msgstr "" + +#: templates/js/translated/purchase_order.js:878 +msgid "No matching purchase orders" +msgstr "" + +#: templates/js/translated/purchase_order.js:1073 +#: templates/js/translated/return_order.js:490 +msgid "Select Line Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1074 +#: templates/js/translated/return_order.js:491 +msgid "At least one line item must be selected" +msgstr "" + +#: templates/js/translated/purchase_order.js:1104 +msgid "Received Quantity" +msgstr "" + +#: templates/js/translated/purchase_order.js:1115 +msgid "Quantity to receive" +msgstr "" + +#: templates/js/translated/purchase_order.js:1170 +#: templates/js/translated/stock.js:1215 +msgid "Specify packaging for incoming stock items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1223 +msgid "Stock Status" +msgstr "" + +#: templates/js/translated/purchase_order.js:1237 +msgid "Add barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1238 +msgid "Remove barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1241 +msgid "Specify location" +msgstr "" + +#: templates/js/translated/purchase_order.js:1249 +msgid "Add batch code" +msgstr "" + +#: templates/js/translated/purchase_order.js:1259 +msgid "Specify packaging" +msgstr "" + +#: templates/js/translated/purchase_order.js:1270 +msgid "Add serial numbers" +msgstr "" + +#: templates/js/translated/purchase_order.js:1281 +msgid "Add note" +msgstr "" + +#: templates/js/translated/purchase_order.js:1338 +msgid "Serials" +msgstr "" + +#: templates/js/translated/purchase_order.js:1368 +msgid "Order Code" +msgstr "" + +#: templates/js/translated/purchase_order.js:1370 +msgid "Quantity to Receive" +msgstr "" + +#: templates/js/translated/purchase_order.js:1395 +#: templates/js/translated/return_order.js:559 +msgid "Confirm receipt of items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1396 +msgid "Receive Purchase Order Items" +msgstr "" + +#: templates/js/translated/purchase_order.js:1464 +msgid "Scan Item Barcode" +msgstr "" + +#: templates/js/translated/purchase_order.js:1465 +msgid "Scan barcode on incoming item (must not match any existing stock items)" +msgstr "" + +#: templates/js/translated/purchase_order.js:1479 +msgid "Invalid barcode data" +msgstr "" + +#: templates/js/translated/purchase_order.js:1751 +#: templates/js/translated/return_order.js:285 +#: templates/js/translated/sales_order.js:810 +#: templates/js/translated/sales_order.js:1034 +msgid "Order is overdue" +msgstr "" + +#: templates/js/translated/purchase_order.js:1913 +msgid "All selected Line items will be deleted" +msgstr "" + +#: templates/js/translated/purchase_order.js:1931 +msgid "Delete selected Line items?" +msgstr "" + +#: templates/js/translated/purchase_order.js:1986 +#: templates/js/translated/sales_order.js:2106 +msgid "Duplicate Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2001 +#: templates/js/translated/return_order.js:475 +#: templates/js/translated/return_order.js:667 +#: templates/js/translated/sales_order.js:2119 +msgid "Edit Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2012 +#: templates/js/translated/return_order.js:680 +#: templates/js/translated/sales_order.js:2130 +msgid "Delete Line Item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2294 +#: templates/js/translated/sales_order.js:2060 +msgid "Duplicate line item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2295 +#: templates/js/translated/return_order.js:799 +#: templates/js/translated/sales_order.js:2061 +msgid "Edit line item" +msgstr "" + +#: templates/js/translated/purchase_order.js:2296 +#: templates/js/translated/return_order.js:803 +#: templates/js/translated/sales_order.js:2067 +msgid "Delete line item" +msgstr "" + +#: templates/js/translated/report.js:68 +msgid "Report print successful" +msgstr "" + +#: templates/js/translated/report.js:73 +msgid "Report printing failed" +msgstr "" + +#: templates/js/translated/return_order.js:60 +#: templates/js/translated/sales_order.js:86 +msgid "Add Customer" +msgstr "" + +#: templates/js/translated/return_order.js:134 +msgid "Create Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:149 +msgid "Edit Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:169 +msgid "Issue Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:186 +msgid "Are you sure you wish to cancel this Return Order?" +msgstr "" + +#: templates/js/translated/return_order.js:193 +msgid "Cancel Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:218 +msgid "Complete Return Order" +msgstr "" + +#: templates/js/translated/return_order.js:265 +msgid "No return orders found" +msgstr "" + +#: templates/js/translated/return_order.js:299 +#: templates/js/translated/sales_order.js:824 +msgid "Invalid Customer" +msgstr "" + +#: templates/js/translated/return_order.js:560 +msgid "Receive Return Order Items" +msgstr "" + +#: templates/js/translated/return_order.js:691 +#: templates/js/translated/sales_order.js:2267 +msgid "No matching line items" +msgstr "" + +#: templates/js/translated/return_order.js:796 +msgid "Mark item as received" +msgstr "" + +#: templates/js/translated/sales_order.js:161 +msgid "Create Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:176 +msgid "Edit Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:291 +msgid "No stock items have been allocated to this shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:296 +msgid "The following stock items will be shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:336 +msgid "Complete Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:360 +msgid "Confirm Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:416 +msgid "No pending shipments found" +msgstr "" + +#: templates/js/translated/sales_order.js:420 +msgid "No stock items have been allocated to pending shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:430 +msgid "Complete Shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:452 +msgid "Skip" +msgstr "" + +#: templates/js/translated/sales_order.js:484 +msgid "Ship Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:500 +msgid "Ship this order?" +msgstr "" + +#: templates/js/translated/sales_order.js:506 +msgid "Order cannot be shipped as there are incomplete shipments" +msgstr "" + +#: templates/js/translated/sales_order.js:513 +msgid "This order has line items which have not been completed." +msgstr "" + +#: templates/js/translated/sales_order.js:514 +msgid "Shipping this order means that the order and line items will no longer be editable." +msgstr "" + +#: templates/js/translated/sales_order.js:572 +msgid "Issue this Sales Order?" +msgstr "" + +#: templates/js/translated/sales_order.js:577 +msgid "Issue Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:596 +msgid "Cancel Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:601 +msgid "Cancelling this order means that the order will no longer be editable." +msgstr "" + +#: templates/js/translated/sales_order.js:655 +msgid "Create New Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:764 +msgid "No sales orders found" +msgstr "" + +#: templates/js/translated/sales_order.js:944 +msgid "Edit shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:947 +msgid "Complete shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:952 +msgid "Delete shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:969 +msgid "Edit Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:984 +msgid "Delete Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:1017 +msgid "No matching shipments found" +msgstr "" + +#: templates/js/translated/sales_order.js:1042 +msgid "Shipment Reference" +msgstr "" + +#: templates/js/translated/sales_order.js:1066 +#: templates/js/translated/sales_order.js:1565 +msgid "Not shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:1084 +msgid "Tracking" +msgstr "" + +#: templates/js/translated/sales_order.js:1088 +msgid "Invoice" +msgstr "" + +#: templates/js/translated/sales_order.js:1255 +msgid "Add Shipment" +msgstr "" + +#: templates/js/translated/sales_order.js:1306 +msgid "Confirm stock allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1307 +msgid "Allocate Stock Items to Sales Order" +msgstr "" + +#: templates/js/translated/sales_order.js:1513 +msgid "No sales order allocations found" +msgstr "" + +#: templates/js/translated/sales_order.js:1605 +msgid "Edit Stock Allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1619 +msgid "Confirm Delete Operation" +msgstr "" + +#: templates/js/translated/sales_order.js:1620 +msgid "Delete Stock Allocation" +msgstr "" + +#: templates/js/translated/sales_order.js:1659 +#: templates/js/translated/sales_order.js:1746 +#: templates/js/translated/stock.js:1861 +msgid "Shipped to customer" +msgstr "" + +#: templates/js/translated/sales_order.js:1667 +#: templates/js/translated/sales_order.js:1755 +msgid "Stock location not specified" +msgstr "" + +#: templates/js/translated/sales_order.js:2044 +msgid "Allocate serial numbers" +msgstr "" + +#: templates/js/translated/sales_order.js:2048 +msgid "Purchase stock" +msgstr "" + +#: templates/js/translated/sales_order.js:2057 +#: templates/js/translated/sales_order.js:2245 +msgid "Calculate price" +msgstr "" + +#: templates/js/translated/sales_order.js:2071 +msgid "Cannot be deleted as items have been shipped" +msgstr "" + +#: templates/js/translated/sales_order.js:2074 +msgid "Cannot be deleted as items have been allocated" +msgstr "" + +#: templates/js/translated/sales_order.js:2145 +msgid "Allocate Serial Numbers" +msgstr "" + +#: templates/js/translated/sales_order.js:2253 +msgid "Update Unit Price" +msgstr "" + +#: templates/js/translated/search.js:270 +msgid "No results" +msgstr "" + +#: templates/js/translated/search.js:292 templates/search.html:25 +msgid "Enter search query" +msgstr "" + +#: templates/js/translated/search.js:342 +msgid "result" +msgstr "" + +#: templates/js/translated/search.js:352 +msgid "Minimize results" +msgstr "" + +#: templates/js/translated/search.js:355 +msgid "Remove results" +msgstr "" + +#: templates/js/translated/stock.js:106 +msgid "Serialize Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:137 +msgid "Confirm Stock Serialization" +msgstr "" + +#: templates/js/translated/stock.js:173 +msgid "Add Location type" +msgstr "" + +#: templates/js/translated/stock.js:209 +msgid "Edit Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:224 +msgid "New Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:226 +msgid "Create another location after this one" +msgstr "" + +#: templates/js/translated/stock.js:227 +msgid "Stock location created" +msgstr "" + +#: templates/js/translated/stock.js:241 +msgid "Are you sure you want to delete this stock location?" +msgstr "" + +#: templates/js/translated/stock.js:248 +msgid "Move to parent stock location" +msgstr "" + +#: templates/js/translated/stock.js:257 +msgid "Delete Stock Location" +msgstr "" + +#: templates/js/translated/stock.js:261 +msgid "Action for stock items in this stock location" +msgstr "" + +#: templates/js/translated/stock.js:266 +msgid "Action for sub-locations" +msgstr "" + +#: templates/js/translated/stock.js:320 +msgid "This part cannot be serialized" +msgstr "" + +#: templates/js/translated/stock.js:356 +msgid "Add given quantity as packs instead of individual items" +msgstr "" + +#: templates/js/translated/stock.js:368 +msgid "Enter initial quantity for this stock item" +msgstr "" + +#: templates/js/translated/stock.js:374 +msgid "Enter serial numbers for new stock (or leave blank)" +msgstr "" + +#: templates/js/translated/stock.js:445 +msgid "Stock item duplicated" +msgstr "" + +#: templates/js/translated/stock.js:465 +msgid "Duplicate Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:481 +msgid "Are you sure you want to delete this stock item?" +msgstr "" + +#: templates/js/translated/stock.js:486 +msgid "Delete Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:507 +msgid "Edit Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:549 +msgid "Create another item after this one" +msgstr "" + +#: templates/js/translated/stock.js:561 +msgid "Created new stock item" +msgstr "" + +#: templates/js/translated/stock.js:574 +msgid "Created multiple stock items" +msgstr "" + +#: templates/js/translated/stock.js:599 +msgid "Find Serial Number" +msgstr "" + +#: templates/js/translated/stock.js:603 templates/js/translated/stock.js:604 +msgid "Enter serial number" +msgstr "" + +#: templates/js/translated/stock.js:620 +msgid "Enter a serial number" +msgstr "" + +#: templates/js/translated/stock.js:640 +msgid "No matching serial number" +msgstr "" + +#: templates/js/translated/stock.js:649 +msgid "More than one matching result found" +msgstr "" + +#: templates/js/translated/stock.js:757 +msgid "Confirm stock assignment" +msgstr "" + +#: templates/js/translated/stock.js:758 +msgid "Assign Stock to Customer" +msgstr "" + +#: templates/js/translated/stock.js:835 +msgid "Warning: Merge operation cannot be reversed" +msgstr "" + +#: templates/js/translated/stock.js:836 +msgid "Some information will be lost when merging stock items" +msgstr "" + +#: templates/js/translated/stock.js:838 +msgid "Stock transaction history will be deleted for merged items" +msgstr "" + +#: templates/js/translated/stock.js:839 +msgid "Supplier part information will be deleted for merged items" +msgstr "" + +#: templates/js/translated/stock.js:933 +msgid "Confirm stock item merge" +msgstr "" + +#: templates/js/translated/stock.js:934 +msgid "Merge Stock Items" +msgstr "" + +#: templates/js/translated/stock.js:1031 +msgid "Transfer Stock" +msgstr "" + +#: templates/js/translated/stock.js:1032 +msgid "Move" +msgstr "" + +#: templates/js/translated/stock.js:1038 +msgid "Count Stock" +msgstr "" + +#: templates/js/translated/stock.js:1039 +msgid "Count" +msgstr "" + +#: templates/js/translated/stock.js:1043 +msgid "Remove Stock" +msgstr "" + +#: templates/js/translated/stock.js:1044 +msgid "Take" +msgstr "" + +#: templates/js/translated/stock.js:1048 +msgid "Add Stock" +msgstr "" + +#: templates/js/translated/stock.js:1049 users/models.py:397 +msgid "Add" +msgstr "" + +#: templates/js/translated/stock.js:1053 +msgid "Delete Stock" +msgstr "" + +#: templates/js/translated/stock.js:1152 +msgid "Quantity cannot be adjusted for serialized stock" +msgstr "" + +#: templates/js/translated/stock.js:1152 +msgid "Specify stock quantity" +msgstr "" + +#: templates/js/translated/stock.js:1168 +msgid "Adjust batch code" +msgstr "" + +#: templates/js/translated/stock.js:1178 +msgid "Adjust packaging" +msgstr "" + +#: templates/js/translated/stock.js:1256 templates/js/translated/stock.js:3383 +msgid "Select Stock Items" +msgstr "" + +#: templates/js/translated/stock.js:1257 +msgid "Select at least one available stock item" +msgstr "" + +#: templates/js/translated/stock.js:1303 +msgid "Confirm stock adjustment" +msgstr "" + +#: templates/js/translated/stock.js:1448 +msgid "PASS" +msgstr "" + +#: templates/js/translated/stock.js:1450 +msgid "FAIL" +msgstr "" + +#: templates/js/translated/stock.js:1455 +msgid "NO RESULT" +msgstr "" + +#: templates/js/translated/stock.js:1535 +msgid "Pass test" +msgstr "" + +#: templates/js/translated/stock.js:1538 +msgid "Add test result" +msgstr "" + +#: templates/js/translated/stock.js:1541 +msgid "Edit test result" +msgstr "" + +#: templates/js/translated/stock.js:1542 templates/js/translated/stock.js:1816 +msgid "Delete test result" +msgstr "" + +#: templates/js/translated/stock.js:1561 +msgid "No test results found" +msgstr "" + +#: templates/js/translated/stock.js:1625 +msgid "Test Date" +msgstr "" + +#: templates/js/translated/stock.js:1638 +msgid "Test started" +msgstr "" + +#: templates/js/translated/stock.js:1647 +msgid "Test finished" +msgstr "" + +#: templates/js/translated/stock.js:1801 +msgid "Edit Test Result" +msgstr "" + +#: templates/js/translated/stock.js:1821 +msgid "Delete Test Result" +msgstr "" + +#: templates/js/translated/stock.js:1853 +msgid "In production" +msgstr "" + +#: templates/js/translated/stock.js:1857 +msgid "Installed in Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:1865 +msgid "Assigned to Sales Order" +msgstr "" + +#: templates/js/translated/stock.js:1871 +msgid "No stock location set" +msgstr "" + +#: templates/js/translated/stock.js:1928 +msgid "Change stock status" +msgstr "" + +#: templates/js/translated/stock.js:1937 +msgid "Merge stock" +msgstr "" + +#: templates/js/translated/stock.js:1986 +msgid "Delete stock" +msgstr "" + +#: templates/js/translated/stock.js:2039 +msgid "stock items" +msgstr "" + +#: templates/js/translated/stock.js:2044 +msgid "Scan to location" +msgstr "" + +#: templates/js/translated/stock.js:2055 +msgid "Stock Actions" +msgstr "" + +#: templates/js/translated/stock.js:2099 +msgid "Load installed items" +msgstr "" + +#: templates/js/translated/stock.js:2177 +msgid "Stock item is in production" +msgstr "" + +#: templates/js/translated/stock.js:2182 +msgid "Stock item assigned to sales order" +msgstr "" + +#: templates/js/translated/stock.js:2185 +msgid "Stock item assigned to customer" +msgstr "" + +#: templates/js/translated/stock.js:2188 +msgid "Serialized stock item has been allocated" +msgstr "" + +#: templates/js/translated/stock.js:2190 +msgid "Stock item has been fully allocated" +msgstr "" + +#: templates/js/translated/stock.js:2192 +msgid "Stock item has been partially allocated" +msgstr "" + +#: templates/js/translated/stock.js:2195 +msgid "Stock item has been installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:2197 +msgid "Stock item has been consumed by a build order" +msgstr "" + +#: templates/js/translated/stock.js:2201 +msgid "Stock item has expired" +msgstr "" + +#: templates/js/translated/stock.js:2203 +msgid "Stock item will expire soon" +msgstr "" + +#: templates/js/translated/stock.js:2208 +msgid "Stock item has been rejected" +msgstr "" + +#: templates/js/translated/stock.js:2210 +msgid "Stock item is lost" +msgstr "" + +#: templates/js/translated/stock.js:2212 +msgid "Stock item is destroyed" +msgstr "" + +#: templates/js/translated/stock.js:2216 +#: templates/js/translated/table_filters.js:357 +msgid "Depleted" +msgstr "" + +#: templates/js/translated/stock.js:2381 +msgid "Supplier part not specified" +msgstr "" + +#: templates/js/translated/stock.js:2428 +msgid "Stock Value" +msgstr "" + +#: templates/js/translated/stock.js:2556 +msgid "No stock items matching query" +msgstr "" + +#: templates/js/translated/stock.js:2659 +msgid "stock locations" +msgstr "" + +#: templates/js/translated/stock.js:2814 +msgid "Load Sublocations" +msgstr "" + +#: templates/js/translated/stock.js:2931 +msgid "Details" +msgstr "" + +#: templates/js/translated/stock.js:2935 +msgid "No changes" +msgstr "" + +#: templates/js/translated/stock.js:2947 +msgid "Part information unavailable" +msgstr "" + +#: templates/js/translated/stock.js:2969 +msgid "Location no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:2986 +msgid "Build order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3001 +msgid "Purchase order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3018 +msgid "Sales Order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3035 +msgid "Return Order no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3054 +msgid "Customer no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3072 +msgid "Stock item no longer exists" +msgstr "" + +#: templates/js/translated/stock.js:3090 +msgid "Added" +msgstr "" + +#: templates/js/translated/stock.js:3098 +msgid "Removed" +msgstr "" + +#: templates/js/translated/stock.js:3170 +msgid "No installed items" +msgstr "" + +#: templates/js/translated/stock.js:3224 templates/js/translated/stock.js:3260 +msgid "Uninstall Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:3281 +msgid "Select stock item to uninstall" +msgstr "" + +#: templates/js/translated/stock.js:3302 +msgid "Install another stock item into this item" +msgstr "" + +#: templates/js/translated/stock.js:3303 +msgid "Stock items can only be installed if they meet the following criteria" +msgstr "" + +#: templates/js/translated/stock.js:3305 +msgid "The Stock Item links to a Part which is the BOM for this Stock Item" +msgstr "" + +#: templates/js/translated/stock.js:3306 +msgid "The Stock Item is currently available in stock" +msgstr "" + +#: templates/js/translated/stock.js:3307 +msgid "The Stock Item is not already installed in another item" +msgstr "" + +#: templates/js/translated/stock.js:3308 +msgid "The Stock Item is tracked by either a batch code or serial number" +msgstr "" + +#: templates/js/translated/stock.js:3321 +msgid "Select part to install" +msgstr "" + +#: templates/js/translated/stock.js:3384 +msgid "Select one or more stock items" +msgstr "" + +#: templates/js/translated/stock.js:3397 +msgid "Selected stock items" +msgstr "" + +#: templates/js/translated/stock.js:3401 +msgid "Change Stock Status" +msgstr "" + +#: templates/js/translated/stock.js:3478 +msgid "This week" +msgstr "" + +#: templates/js/translated/stock.js:3486 +msgid "This month" +msgstr "" + +#: templates/js/translated/table_filters.js:73 +msgid "Has project code" +msgstr "" + +#: templates/js/translated/table_filters.js:88 +#: templates/js/translated/table_filters.js:608 +#: templates/js/translated/table_filters.js:620 +#: templates/js/translated/table_filters.js:661 +msgid "Order status" +msgstr "" + +#: templates/js/translated/table_filters.js:161 +msgid "Testable Part" +msgstr "" + +#: templates/js/translated/table_filters.js:165 +msgid "Trackable Part" +msgstr "" + +#: templates/js/translated/table_filters.js:169 +msgid "Assembled Part" +msgstr "" + +#: templates/js/translated/table_filters.js:173 +msgid "Has Available Stock" +msgstr "" + +#: templates/js/translated/table_filters.js:189 +msgid "Allow Variant Stock" +msgstr "" + +#: templates/js/translated/table_filters.js:241 +#: templates/js/translated/table_filters.js:352 +msgid "Include sublocations" +msgstr "" + +#: templates/js/translated/table_filters.js:242 +msgid "Include locations" +msgstr "" + +#: templates/js/translated/table_filters.js:274 +msgid "Has location type" +msgstr "" + +#: templates/js/translated/table_filters.js:285 +#: templates/js/translated/table_filters.js:286 +#: templates/js/translated/table_filters.js:714 +msgid "Include subcategories" +msgstr "" + +#: templates/js/translated/table_filters.js:294 +#: templates/js/translated/table_filters.js:767 +msgid "Subscribed" +msgstr "" + +#: templates/js/translated/table_filters.js:305 +#: templates/js/translated/table_filters.js:387 +msgid "Is Serialized" +msgstr "" + +#: templates/js/translated/table_filters.js:308 +#: templates/js/translated/table_filters.js:394 +msgid "Serial number GTE" +msgstr "" + +#: templates/js/translated/table_filters.js:309 +#: templates/js/translated/table_filters.js:395 +msgid "Serial number greater than or equal to" +msgstr "" + +#: templates/js/translated/table_filters.js:312 +#: templates/js/translated/table_filters.js:398 +msgid "Serial number LTE" +msgstr "" + +#: templates/js/translated/table_filters.js:313 +#: templates/js/translated/table_filters.js:399 +msgid "Serial number less than or equal to" +msgstr "" + +#: templates/js/translated/table_filters.js:316 +#: templates/js/translated/table_filters.js:317 +#: templates/js/translated/table_filters.js:390 +#: templates/js/translated/table_filters.js:391 +msgid "Serial number" +msgstr "" + +#: templates/js/translated/table_filters.js:321 +#: templates/js/translated/table_filters.js:412 +msgid "Batch code" +msgstr "" + +#: templates/js/translated/table_filters.js:332 +#: templates/js/translated/table_filters.js:703 +msgid "Active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:333 +msgid "Show stock for active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:338 +msgid "Part is an assembly" +msgstr "" + +#: templates/js/translated/table_filters.js:342 +msgid "Is allocated" +msgstr "" + +#: templates/js/translated/table_filters.js:343 +msgid "Item has been allocated" +msgstr "" + +#: templates/js/translated/table_filters.js:348 +msgid "Stock is available for use" +msgstr "" + +#: templates/js/translated/table_filters.js:353 +msgid "Include stock in sublocations" +msgstr "" + +#: templates/js/translated/table_filters.js:358 +msgid "Show stock items which are depleted" +msgstr "" + +#: templates/js/translated/table_filters.js:363 +msgid "Show items which are in stock" +msgstr "" + +#: templates/js/translated/table_filters.js:368 +msgid "Show items which are in production" +msgstr "" + +#: templates/js/translated/table_filters.js:372 +msgid "Include Variants" +msgstr "" + +#: templates/js/translated/table_filters.js:373 +msgid "Include stock items for variant parts" +msgstr "" + +#: templates/js/translated/table_filters.js:378 +msgid "Show stock items which are installed in another item" +msgstr "" + +#: templates/js/translated/table_filters.js:383 +msgid "Show items which have been assigned to a customer" +msgstr "" + +#: templates/js/translated/table_filters.js:403 +#: templates/js/translated/table_filters.js:404 +msgid "Stock status" +msgstr "" + +#: templates/js/translated/table_filters.js:407 +msgid "Has batch code" +msgstr "" + +#: templates/js/translated/table_filters.js:416 +msgid "Stock item is tracked by either batch code or serial number" +msgstr "" + +#: templates/js/translated/table_filters.js:421 +msgid "Has purchase price" +msgstr "" + +#: templates/js/translated/table_filters.js:422 +msgid "Show stock items which have a purchase price set" +msgstr "" + +#: templates/js/translated/table_filters.js:426 +msgid "Expiry Date before" +msgstr "" + +#: templates/js/translated/table_filters.js:430 +msgid "Expiry Date after" +msgstr "" + +#: templates/js/translated/table_filters.js:443 +msgid "Show stock items which have expired" +msgstr "" + +#: templates/js/translated/table_filters.js:449 +msgid "Show stock which is close to expiring" +msgstr "" + +#: templates/js/translated/table_filters.js:463 +msgid "Test Passed" +msgstr "" + +#: templates/js/translated/table_filters.js:467 +msgid "Include Installed Items" +msgstr "" + +#: templates/js/translated/table_filters.js:478 +msgid "Interval start" +msgstr "" + +#: templates/js/translated/table_filters.js:482 +msgid "Interval end" +msgstr "" + +#: templates/js/translated/table_filters.js:536 +msgid "Build status" +msgstr "" + +#: templates/js/translated/table_filters.js:715 +msgid "Include parts in subcategories" +msgstr "" + +#: templates/js/translated/table_filters.js:720 +msgid "Show active parts" +msgstr "" + +#: templates/js/translated/table_filters.js:725 +msgid "Show locked parts" +msgstr "" + +#: templates/js/translated/table_filters.js:733 +msgid "Available stock" +msgstr "" + +#: templates/js/translated/table_filters.js:741 +#: templates/js/translated/table_filters.js:845 +msgid "Has Units" +msgstr "" + +#: templates/js/translated/table_filters.js:742 +msgid "Part has defined units" +msgstr "" + +#: templates/js/translated/table_filters.js:746 +msgid "Has IPN" +msgstr "" + +#: templates/js/translated/table_filters.js:747 +msgid "Part has internal part number" +msgstr "" + +#: templates/js/translated/table_filters.js:751 +msgid "In stock" +msgstr "" + +#: templates/js/translated/table_filters.js:759 +msgid "Purchasable" +msgstr "" + +#: templates/js/translated/table_filters.js:771 +msgid "Has stocktake entries" +msgstr "" + +#: templates/js/translated/table_filters.js:841 +msgid "Has Choices" +msgstr "" + +#: templates/js/translated/tables.js:92 +msgid "Display calendar view" +msgstr "" + +#: templates/js/translated/tables.js:102 +msgid "Display list view" +msgstr "" + +#: templates/js/translated/tables.js:112 +msgid "Display tree view" +msgstr "" + +#: templates/js/translated/tables.js:130 +msgid "Expand all rows" +msgstr "" + +#: templates/js/translated/tables.js:136 +msgid "Collapse all rows" +msgstr "" + +#: templates/js/translated/tables.js:186 +msgid "Export Table Data" +msgstr "" + +#: templates/js/translated/tables.js:190 +msgid "Select File Format" +msgstr "" + +#: templates/js/translated/tables.js:529 +msgid "Loading data" +msgstr "" + +#: templates/js/translated/tables.js:532 +msgid "rows per page" +msgstr "" + +#: templates/js/translated/tables.js:537 +msgid "Showing all rows" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "Showing" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "to" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "of" +msgstr "" + +#: templates/js/translated/tables.js:539 +msgid "rows" +msgstr "" + +#: templates/js/translated/tables.js:546 +msgid "No matching results" +msgstr "" + +#: templates/js/translated/tables.js:549 +msgid "Hide/Show pagination" +msgstr "" + +#: templates/js/translated/tables.js:555 +msgid "Toggle" +msgstr "" + +#: templates/js/translated/tables.js:561 +msgid "All" +msgstr "" + +#: templates/navbar.html:45 +msgid "Buy" +msgstr "" + +#: templates/navbar.html:57 +msgid "Sell" +msgstr "" + +#: templates/navbar.html:121 +msgid "Show Notifications" +msgstr "" + +#: templates/navbar.html:124 +msgid "New Notifications" +msgstr "" + +#: templates/navbar.html:144 users/models.py:201 +msgid "Admin" +msgstr "" + +#: templates/navbar.html:148 +msgid "Logout" +msgstr "" + +#: templates/notes_buttons.html:6 templates/notes_buttons.html:7 +msgid "Save" +msgstr "" + +#: templates/notifications.html:9 +msgid "Show all notifications and history" +msgstr "" + +#: templates/pui_banner.html:9 +msgid "Platform UI - the new UI for InvenTree - provides more modern administration options." +msgstr "" + +#: templates/pui_banner.html:12 +msgid "Platform UI - the new UI for InvenTree - is ready to be tested." +msgstr "" + +#: templates/pui_banner.html:15 +msgid "Try it out now" +msgstr "" + +#: templates/pui_banner.html:15 +msgid "here" +msgstr "" + +#: templates/qr_code.html:11 +msgid "QR data not provided" +msgstr "" + +#: templates/registration/logged_out.html:7 +msgid "You were logged out successfully." +msgstr "" + +#: templates/registration/logged_out.html:9 +msgid "Log in again" +msgstr "" + +#: templates/search.html:9 +msgid "Show full search results" +msgstr "" + +#: templates/search.html:12 +msgid "Clear search" +msgstr "" + +#: templates/search.html:15 +msgid "Close search menu" +msgstr "" + +#: templates/socialaccount/authentication_error.html:5 +msgid "Social Network Login Failure" +msgstr "" + +#: templates/socialaccount/authentication_error.html:8 +msgid "Account Login Failure" +msgstr "" + +#: templates/socialaccount/authentication_error.html:11 +msgid "An error occurred while attempting to login via your social network account." +msgstr "" + +#: templates/socialaccount/authentication_error.html:13 +msgid "Contact your system administrator for further information." +msgstr "" + +#: templates/socialaccount/login.html:13 +#, python-format +msgid "Connect %(provider)s" +msgstr "" + +#: templates/socialaccount/login.html:15 +#, python-format +msgid "You are about to connect a new third party account from %(provider)s." +msgstr "" + +#: templates/socialaccount/login.html:17 +#, python-format +msgid "Sign In Via %(provider)s" +msgstr "" + +#: templates/socialaccount/login.html:19 +#, python-format +msgid "You are about to sign in using a third party account from %(provider)s." +msgstr "" + +#: templates/socialaccount/login.html:24 +msgid "Continue" +msgstr "" + +#: templates/socialaccount/login.html:29 +msgid "Invalid SSO Provider" +msgstr "" + +#: templates/socialaccount/login.html:31 +msgid "The selected SSO provider is invalid, or has not been correctly configured" +msgstr "" + +#: templates/socialaccount/signup.html:11 +#, python-format +msgid "You are about to use your %(provider_name)s account to login to %(site_name)s." +msgstr "" + +#: templates/socialaccount/signup.html:13 +msgid "As a final step, please complete the following form" +msgstr "" + +#: templates/socialaccount/snippets/provider_list.html:26 +msgid "Provider has not been configured" +msgstr "" + +#: templates/socialaccount/snippets/provider_list.html:35 +msgid "No SSO providers have been configured" +msgstr "" + +#: templates/stats.html:13 +msgid "Instance Name" +msgstr "" + +#: templates/stats.html:18 +msgid "Database" +msgstr "" + +#: templates/stats.html:26 +msgid "Server is running in debug mode" +msgstr "" + +#: templates/stats.html:33 +msgid "Docker Mode" +msgstr "" + +#: templates/stats.html:34 +msgid "Server is deployed using docker" +msgstr "" + +#: templates/stats.html:39 +msgid "Plugin Support" +msgstr "" + +#: templates/stats.html:43 +msgid "Plugin support enabled" +msgstr "" + +#: templates/stats.html:45 +msgid "Plugin support disabled" +msgstr "" + +#: templates/stats.html:52 +msgid "Server status" +msgstr "" + +#: templates/stats.html:55 +msgid "Healthy" +msgstr "" + +#: templates/stats.html:57 +msgid "Issues detected" +msgstr "" + +#: templates/stats.html:64 +msgid "Background Worker" +msgstr "" + +#: templates/stats.html:67 +msgid "Background worker not running" +msgstr "" + +#: templates/stats.html:75 +msgid "Email Settings" +msgstr "" + +#: templates/stats.html:78 +msgid "Email settings not configured" +msgstr "" + +#: templates/test_statistics_table.html:13 +msgid "Passed" +msgstr "" + +#: templates/test_statistics_table.html:16 +msgid "Failed" +msgstr "" + +#: templates/yesnolabel.html:4 +msgid "Yes" +msgstr "" + +#: templates/yesnolabel.html:6 +msgid "No" +msgstr "" + +#: users/admin.py:101 +msgid "Users" +msgstr "" + +#: users/admin.py:102 +msgid "Select which users are assigned to this group" +msgstr "" + +#: users/admin.py:246 +msgid "The following users are members of multiple groups" +msgstr "" + +#: users/admin.py:280 +msgid "Personal info" +msgstr "" + +#: users/admin.py:282 +msgid "Permissions" +msgstr "" + +#: users/admin.py:285 +msgid "Important dates" +msgstr "" + +#: users/authentication.py:29 users/models.py:138 +msgid "Token has been revoked" +msgstr "" + +#: users/authentication.py:32 +msgid "Token has expired" +msgstr "" + +#: users/models.py:81 +msgid "API Token" +msgstr "" + +#: users/models.py:82 +msgid "API Tokens" +msgstr "" + +#: users/models.py:118 +msgid "Token Name" +msgstr "" + +#: users/models.py:119 +msgid "Custom token name" +msgstr "" + +#: users/models.py:125 +msgid "Token expiry date" +msgstr "" + +#: users/models.py:133 +msgid "Last Seen" +msgstr "" + +#: users/models.py:134 +msgid "Last time the token was used" +msgstr "" + +#: users/models.py:138 +msgid "Revoked" +msgstr "" + +#: users/models.py:380 +msgid "Permission set" +msgstr "" + +#: users/models.py:389 +msgid "Group" +msgstr "" + +#: users/models.py:393 +msgid "View" +msgstr "" + +#: users/models.py:393 +msgid "Permission to view items" +msgstr "" + +#: users/models.py:397 +msgid "Permission to add items" +msgstr "" + +#: users/models.py:401 +msgid "Change" +msgstr "" + +#: users/models.py:403 +msgid "Permissions to edit items" +msgstr "" + +#: users/models.py:409 +msgid "Permission to delete items" +msgstr "" diff --git a/src/frontend/.linguirc b/src/frontend/.linguirc index f767f22641..edc5a37fd4 100644 --- a/src/frontend/.linguirc +++ b/src/frontend/.linguirc @@ -19,6 +19,7 @@ "it", "ja", "ko", + "lt", "lv", "nl", "no", diff --git a/src/frontend/src/contexts/LanguageContext.tsx b/src/frontend/src/contexts/LanguageContext.tsx index 509928c553..0fcb2aa915 100644 --- a/src/frontend/src/contexts/LanguageContext.tsx +++ b/src/frontend/src/contexts/LanguageContext.tsx @@ -36,6 +36,7 @@ export const getSupportedLanguages = (): Record => { it: t`Italian`, ja: t`Japanese`, ko: t`Korean`, + lt: t`Lithuanian`, lv: t`Latvian`, nl: t`Dutch`, no: t`Norwegian`, diff --git a/src/frontend/src/locales/lt/messages.d.ts b/src/frontend/src/locales/lt/messages.d.ts new file mode 100644 index 0000000000..1c1427cb3a --- /dev/null +++ b/src/frontend/src/locales/lt/messages.d.ts @@ -0,0 +1,4 @@ +import { Messages } from '@lingui/core'; + declare const messages: Messages; + export { messages }; + \ No newline at end of file diff --git a/src/frontend/src/locales/lt/messages.po b/src/frontend/src/locales/lt/messages.po new file mode 100644 index 0000000000..f3ff5d4aad --- /dev/null +++ b/src/frontend/src/locales/lt/messages.po @@ -0,0 +1,6879 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2024-09-16 23:19+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: lt\n" + +#: src/components/Boundary.tsx:12 +msgid "Error rendering component" +msgstr "" + +#: src/components/Boundary.tsx:14 +msgid "An error occurred while rendering this component. Refer to the console for more information." +msgstr "" + +#: src/components/DashboardItemProxy.tsx:34 +msgid "Title" +msgstr "" + +#: src/components/buttons/AdminButton.tsx:80 +msgid "Open in admin interface" +msgstr "" + +#: src/components/buttons/CopyButton.tsx:24 +msgid "Copied" +msgstr "" + +#: src/components/buttons/CopyButton.tsx:24 +msgid "Copy" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:93 +msgid "Print Label" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:99 +msgid "Print" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:100 +msgid "Label printing completed successfully" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:106 +#: src/components/buttons/PrintingActions.tsx:144 +#: src/components/editors/NotesEditor.tsx:40 +#: src/components/editors/NotesEditor.tsx:109 +#: src/components/editors/NotesEditor.tsx:163 +#: src/components/forms/fields/ApiFormField.tsx:319 +#: src/components/importer/ImportDataSelector.tsx:187 +#: src/components/importer/ImporterColumnSelector.tsx:207 +#: src/components/modals/LicenseModal.tsx:75 +#: src/components/nav/SearchDrawer.tsx:448 +#: src/pages/ErrorPage.tsx:11 +#: src/pages/part/PartPricingPanel.tsx:67 +#: src/tables/InvenTreeTable.tsx:496 +#: src/tables/bom/BomTable.tsx:450 +#: src/tables/stock/StockItemTestResultTable.tsx:317 +msgid "Error" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:107 +msgid "The label could not be generated" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:122 +msgid "Print Report" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:138 +msgid "Generate" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:139 +msgid "Report printing completed successfully" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:145 +msgid "The report could not be generated" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:173 +msgid "Printing Actions" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:178 +msgid "Print Labels" +msgstr "" + +#: src/components/buttons/PrintingActions.tsx:184 +msgid "Print Reports" +msgstr "" + +#: src/components/buttons/RemoveRowButton.tsx:8 +msgid "Remove this row" +msgstr "" + +#: src/components/buttons/ScanButton.tsx:15 +msgid "Scan QR code" +msgstr "" + +#: src/components/buttons/ScanButton.tsx:20 +msgid "Open QR code scanner" +msgstr "" + +#: src/components/buttons/SpotlightButton.tsx:14 +msgid "Open spotlight" +msgstr "" + +#: src/components/buttons/YesNoButton.tsx:16 +msgid "Pass" +msgstr "" + +#: src/components/buttons/YesNoButton.tsx:17 +msgid "Fail" +msgstr "" + +#: src/components/buttons/YesNoButton.tsx:33 +#: src/tables/Filter.tsx:52 +msgid "Yes" +msgstr "" + +#: src/components/buttons/YesNoButton.tsx:33 +#: src/tables/Filter.tsx:53 +msgid "No" +msgstr "" + +#: src/components/details/Details.tsx:301 +msgid "No name defined" +msgstr "" + +#: src/components/details/DetailsImage.tsx:65 +msgid "Remove Image" +msgstr "" + +#: src/components/details/DetailsImage.tsx:68 +msgid "Remove the associated image from this item?" +msgstr "" + +#: src/components/details/DetailsImage.tsx:71 +#: src/forms/StockForms.tsx:523 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:199 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:306 +#: src/pages/stock/StockDetail.tsx:511 +msgid "Remove" +msgstr "" + +#: src/components/details/DetailsImage.tsx:71 +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:158 +#: src/components/items/ActionDropdown.tsx:270 +#: src/components/items/ActionDropdown.tsx:271 +#: src/contexts/ThemeContext.tsx:43 +#: src/hooks/UseForm.tsx:40 +#: src/tables/FilterSelectDrawer.tsx:210 +#: src/tables/build/BuildOutputTable.tsx:286 +msgid "Cancel" +msgstr "" + +#: src/components/details/DetailsImage.tsx:97 +msgid "Drag and drop to upload" +msgstr "" + +#: src/components/details/DetailsImage.tsx:100 +msgid "Click to select file(s)" +msgstr "" + +#: src/components/details/DetailsImage.tsx:226 +msgid "Clear" +msgstr "" + +#: src/components/details/DetailsImage.tsx:232 +#: src/components/forms/ApiForm.tsx:640 +#: src/contexts/ThemeContext.tsx:43 +msgid "Submit" +msgstr "" + +#: src/components/details/DetailsImage.tsx:272 +msgid "Select from existing images" +msgstr "" + +#: src/components/details/DetailsImage.tsx:280 +msgid "Select Image" +msgstr "" + +#: src/components/details/DetailsImage.tsx:292 +msgid "Upload new image" +msgstr "" + +#: src/components/details/DetailsImage.tsx:299 +msgid "Upload Image" +msgstr "" + +#: src/components/details/DetailsImage.tsx:312 +msgid "Delete image" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:41 +#: src/components/editors/NotesEditor.tsx:110 +msgid "Image upload failed" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:119 +#: src/components/editors/NotesEditor.tsx:154 +#: src/components/forms/ApiForm.tsx:467 +#: src/tables/bom/BomTable.tsx:441 +msgid "Success" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:120 +msgid "Image uploaded successfully" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:155 +msgid "Notes saved successfully" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:164 +msgid "Failed to save notes" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:182 +msgid "Disable Editing" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:191 +msgid "Enable Editing" +msgstr "" + +#: src/components/editors/NotesEditor.tsx:212 +msgid "Save Notes" +msgstr "" + +#: src/components/editors/TemplateEditor/CodeEditor/index.tsx:9 +msgid "Code" +msgstr "" + +#: src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx:81 +msgid "Preview not available, click \"Reload Preview\"." +msgstr "" + +#: src/components/editors/TemplateEditor/PdfPreview/index.tsx:9 +msgid "PDF Preview" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:104 +msgid "Error loading template" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:116 +msgid "Error saving template" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:146 +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:274 +msgid "Save & Reload Preview" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:151 +msgid "Are you sure you want to Save & Reload the preview?" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:153 +msgid "To render the preview the current template needs to be replaced on the server with your modifications which may break the label if it is under active use. Do you want to proceed?" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:157 +msgid "Save & Reload" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:189 +msgid "Preview updated" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:190 +msgid "The preview has been updated successfully." +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:266 +msgid "Reload preview" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:267 +msgid "Use the currently stored template from the server" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:275 +msgid "Save the current template and reload the preview" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:333 +msgid "Select instance to preview" +msgstr "" + +#: src/components/editors/TemplateEditor/TemplateEditor.tsx:377 +msgid "Error rendering template" +msgstr "" + +#: src/components/errors/ClientError.tsx:23 +msgid "Client Error" +msgstr "" + +#: src/components/errors/ClientError.tsx:24 +msgid "Client error occurred" +msgstr "" + +#: src/components/errors/GenericErrorPage.tsx:50 +msgid "Status Code" +msgstr "" + +#: src/components/errors/GenericErrorPage.tsx:63 +msgid "Return to the index page" +msgstr "" + +#: src/components/errors/NotAuthenticated.tsx:8 +msgid "Not Authenticated" +msgstr "" + +#: src/components/errors/NotAuthenticated.tsx:9 +msgid "You are not logged in." +msgstr "" + +#: src/components/errors/NotFound.tsx:8 +msgid "Page Not Found" +msgstr "" + +#: src/components/errors/NotFound.tsx:9 +msgid "This page does not exist" +msgstr "" + +#: src/components/errors/PermissionDenied.tsx:8 +msgid "Permission Denied" +msgstr "" + +#: src/components/errors/PermissionDenied.tsx:9 +msgid "You do not have permission to view this page." +msgstr "" + +#: src/components/errors/ServerError.tsx:8 +msgid "Server Error" +msgstr "" + +#: src/components/errors/ServerError.tsx:9 +msgid "A server error occurred" +msgstr "" + +#: src/components/forms/ApiForm.tsx:151 +#: src/components/forms/ApiForm.tsx:568 +msgid "Form Error" +msgstr "" + +#: src/components/forms/ApiForm.tsx:576 +msgid "Errors exist for one or more form fields" +msgstr "" + +#: src/components/forms/ApiForm.tsx:678 +#: src/tables/plugin/PluginListTable.tsx:391 +msgid "Update" +msgstr "" + +#: src/components/forms/ApiForm.tsx:698 +#: src/components/items/ActionDropdown.tsx:250 +#: src/hooks/UseForm.tsx:122 +#: src/pages/Index/Scan.tsx:357 +#: src/pages/Notifications.tsx:123 +#: src/tables/RowActions.tsx:43 +#: src/tables/plugin/PluginListTable.tsx:423 +msgid "Delete" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:51 +msgid "Login successful" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:52 +msgid "Logged in successfully" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:58 +msgid "Login failed" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:59 +#: src/components/forms/AuthenticationForm.tsx:76 +#: src/components/forms/AuthenticationForm.tsx:211 +#: src/functions/auth.tsx:164 +msgid "Check your input and try again." +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:70 +#: src/functions/auth.tsx:155 +msgid "Mail delivery successful" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:71 +msgid "Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too." +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:75 +msgid "Mail delivery failed" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:95 +msgid "Or continue with other methods" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:106 +#: src/components/forms/AuthenticationForm.tsx:227 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:67 +msgid "Username" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:107 +#: src/components/forms/AuthenticationForm.tsx:228 +msgid "Your username" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:112 +#: src/components/forms/AuthenticationForm.tsx:240 +#: src/pages/Auth/Set-Password.tsx:106 +msgid "Password" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:113 +#: src/components/forms/AuthenticationForm.tsx:241 +msgid "Your password" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:125 +#: src/pages/Auth/Reset.tsx:26 +msgid "Reset password" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:134 +#: src/components/forms/AuthenticationForm.tsx:233 +#: src/pages/Auth/Reset.tsx:31 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:51 +msgid "Email" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:135 +#: src/pages/Auth/Reset.tsx:32 +#: src/pages/Auth/Set-Password.tsx:107 +msgid "We will send you a link to login - if you are registered" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:151 +msgid "Send me an email" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:153 +msgid "Use username and password" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:162 +msgid "Log In" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:164 +msgid "Send Email" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:193 +msgid "Registration successful" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:194 +msgid "Please confirm your email address to complete the registration" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:210 +msgid "Input error" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:234 +msgid "This will be used for a confirmation" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:246 +msgid "Password repeat" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:247 +msgid "Repeat password" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:259 +#: src/components/forms/AuthenticationForm.tsx:304 +msgid "Register" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:265 +msgid "Or use SSO" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:296 +msgid "Don't have an account?" +msgstr "" + +#: src/components/forms/AuthenticationForm.tsx:315 +msgid "Go back to login" +msgstr "" + +#: src/components/forms/HostOptionsForm.tsx:36 +#: src/components/forms/HostOptionsForm.tsx:67 +msgid "Host" +msgstr "" + +#: src/components/forms/HostOptionsForm.tsx:42 +#: src/components/forms/HostOptionsForm.tsx:70 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:410 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:19 +#: src/pages/part/CategoryDetail.tsx:81 +#: src/pages/part/PartDetail.tsx:144 +#: src/pages/stock/LocationDetail.tsx:83 +#: src/tables/machine/MachineTypeTable.tsx:65 +#: src/tables/machine/MachineTypeTable.tsx:109 +#: src/tables/machine/MachineTypeTable.tsx:216 +#: src/tables/machine/MachineTypeTable.tsx:319 +#: src/tables/plugin/PluginErrorTable.tsx:33 +#: src/tables/plugin/PluginListTable.tsx:126 +#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:32 +#: src/tables/settings/GroupTable.tsx:147 +#: src/tables/settings/PendingTasksTable.tsx:28 +#: src/tables/stock/LocationTypesTable.tsx:69 +msgid "Name" +msgstr "" + +#: src/components/forms/HostOptionsForm.tsx:75 +msgid "No one here..." +msgstr "" + +#: src/components/forms/HostOptionsForm.tsx:86 +msgid "Add Host" +msgstr "" + +#: src/components/forms/HostOptionsForm.tsx:90 +msgid "Save" +msgstr "" + +#: src/components/forms/InstanceOptions.tsx:43 +msgid "Select destination instance" +msgstr "" + +#: src/components/forms/InstanceOptions.tsx:71 +msgid "Edit possible host options" +msgstr "" + +#: src/components/forms/InstanceOptions.tsx:98 +msgid "Version: {0}" +msgstr "" + +#: src/components/forms/InstanceOptions.tsx:100 +msgid "API:{0}" +msgstr "" + +#: src/components/forms/InstanceOptions.tsx:102 +msgid "Name: {0}" +msgstr "" + +#: src/components/forms/InstanceOptions.tsx:104 +msgid "State: <0>worker ({0}), <1>plugins{1}" +msgstr "" + +#: src/components/forms/fields/IconField.tsx:81 +msgid "No icon selected" +msgstr "" + +#: src/components/forms/fields/IconField.tsx:159 +msgid "Uncategorized" +msgstr "" + +#: src/components/forms/fields/IconField.tsx:209 +#: src/components/nav/Layout.tsx:70 +#: src/tables/part/PartThumbTable.tsx:192 +msgid "Search..." +msgstr "" + +#: src/components/forms/fields/IconField.tsx:223 +msgid "Select category" +msgstr "" + +#: src/components/forms/fields/IconField.tsx:232 +msgid "Select pack" +msgstr "" + +#: src/components/forms/fields/IconField.tsx:237 +msgid "{0} icons" +msgstr "" + +#: src/components/forms/fields/RelatedModelField.tsx:318 +#: src/pages/Index/Settings/UserSettings.tsx:97 +#: src/tables/Search.tsx:23 +msgid "Search" +msgstr "" + +#: src/components/forms/fields/RelatedModelField.tsx:319 +#: src/components/modals/AboutInvenTreeModal.tsx:81 +#: src/components/widgets/WidgetLayout.tsx:120 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 +msgid "Loading" +msgstr "" + +#: src/components/forms/fields/RelatedModelField.tsx:321 +msgid "No results found" +msgstr "" + +#: src/components/forms/fields/TableField.tsx:72 +msgid "modelRenderer entry required for tables" +msgstr "" + +#: src/components/forms/fields/TableField.tsx:99 +msgid "No entries available" +msgstr "" + +#: src/components/images/Thumbnail.tsx:12 +msgid "Thumbnail" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:170 +msgid "Importing Rows" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:171 +msgid "Please wait while the data is imported" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:188 +msgid "An error occurred while importing data" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:209 +msgid "Edit Data" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:237 +msgid "Delete Row" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:267 +msgid "Row" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:285 +msgid "Row contains errors" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:326 +msgid "Accept" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:359 +msgid "Valid" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:360 +msgid "Filter by row validation status" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:365 +#: src/tables/build/BuildOutputTable.tsx:266 +msgid "Complete" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:366 +msgid "Filter by row completion status" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:383 +msgid "Import selected rows" +msgstr "" + +#: src/components/importer/ImportDataSelector.tsx:398 +msgid "Processing Data" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:50 +#: src/components/importer/ImporterColumnSelector.tsx:176 +msgid "An error occurred" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:62 +msgid "Select column, or leave blank to ignore this field." +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:182 +msgid "Ignore this field" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:196 +msgid "Mapping data columns to database fields" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:201 +msgid "Accept Column Mapping" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:214 +msgid "Database Field" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:215 +msgid "Field Description" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:216 +msgid "Imported Column" +msgstr "" + +#: src/components/importer/ImporterColumnSelector.tsx:217 +msgid "Default Value" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:44 +msgid "Upload File" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:45 +msgid "Map Columns" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:46 +msgid "Import Data" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:47 +msgid "Process Data" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:48 +msgid "Complete Import" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:104 +msgid "Import Complete" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:107 +msgid "Data has been imported successfully" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:109 +#: src/components/importer/ImporterDrawer.tsx:118 +msgid "Close" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:115 +msgid "Unknown Status" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:116 +msgid "Import session has unknown status" +msgstr "" + +#: src/components/importer/ImporterDrawer.tsx:135 +msgid "Importing Data" +msgstr "" + +#: src/components/importer/ImporterImportProgress.tsx:36 +msgid "Importing Records" +msgstr "" + +#: src/components/importer/ImporterImportProgress.tsx:39 +msgid "Imported rows" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:128 +msgid "Options" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:164 +msgid "Barcode Actions" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:169 +msgid "View" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:171 +msgid "View barcode" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:177 +msgid "Link Barcode" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:179 +msgid "Link a custom barcode to this item" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:185 +#: src/components/items/QRCode.tsx:195 +#: src/forms/PurchaseOrderForms.tsx:419 +msgid "Unlink Barcode" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:187 +msgid "Unlink custom barcode" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:238 +#: src/tables/RowActions.tsx:33 +msgid "Edit" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:239 +msgid "Edit item" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:251 +msgid "Delete item" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:259 +#: src/components/items/ActionDropdown.tsx:260 +msgid "Hold" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:282 +#: src/tables/RowActions.tsx:23 +msgid "Duplicate" +msgstr "" + +#: src/components/items/ActionDropdown.tsx:283 +msgid "Duplicate item" +msgstr "" + +#: src/components/items/BarcodeInput.tsx:23 +msgid "Scan barcode data here using barcode scanner" +msgstr "" + +#: src/components/items/BarcodeInput.tsx:24 +msgid "Barcode" +msgstr "" + +#: src/components/items/BarcodeInput.tsx:25 +msgid "Scan" +msgstr "" + +#: src/components/items/DocTooltip.tsx:92 +msgid "Read More" +msgstr "" + +#: src/components/items/ErrorItem.tsx:5 +#: src/tables/InvenTreeTable.tsx:488 +msgid "Unknown error" +msgstr "" + +#: src/components/items/ErrorItem.tsx:10 +msgid "An error occurred:" +msgstr "" + +#: src/components/items/GettingStartedCarousel.tsx:27 +msgid "Read more" +msgstr "" + +#: src/components/items/InfoItem.tsx:27 +msgid "None" +msgstr "" + +#: src/components/items/InvenTreeLogo.tsx:23 +msgid "InvenTree Logo" +msgstr "" + +#: src/components/items/OnlyStaff.tsx:9 +#: src/components/modals/AboutInvenTreeModal.tsx:44 +msgid "This information is only available for staff users" +msgstr "" + +#: 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." +msgstr "" + +#: src/components/items/Placeholder.tsx:17 +msgid "PLH" +msgstr "" + +#: src/components/items/Placeholder.tsx:31 +msgid "This panel is a placeholder." +msgstr "" + +#: src/components/items/QRCode.tsx:90 +msgid "Low (7%)" +msgstr "" + +#: src/components/items/QRCode.tsx:91 +msgid "Medium (15%)" +msgstr "" + +#: src/components/items/QRCode.tsx:92 +msgid "Quartile (25%)" +msgstr "" + +#: src/components/items/QRCode.tsx:93 +msgid "High (30%)" +msgstr "" + +#: src/components/items/QRCode.tsx:101 +msgid "Custom barcode" +msgstr "" + +#: src/components/items/QRCode.tsx:102 +msgid "A custom barcode is registered for this item. The shown code is not that custom barcode." +msgstr "" + +#: src/components/items/QRCode.tsx:119 +msgid "Barcode Data:" +msgstr "" + +#: src/components/items/QRCode.tsx:130 +msgid "Select Error Correction Level" +msgstr "" + +#: src/components/items/QRCode.tsx:173 +#: src/pages/part/PartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:182 +#: src/pages/sales/ReturnOrderDetail.tsx:161 +#: src/pages/sales/SalesOrderDetail.tsx:170 +msgid "Link" +msgstr "" + +#: src/components/items/QRCode.tsx:192 +msgid "This will remove the link to the associated barcode" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:99 +msgid "Version Information" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:103 +msgid "Your InvenTree version status is" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:107 +msgid "Development Version" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:111 +msgid "Up to Date" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:115 +msgid "Update Available" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:125 +msgid "InvenTree Version" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:131 +msgid "Commit Hash" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:136 +msgid "Commit Date" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:141 +msgid "Commit Branch" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:146 +#: src/components/modals/ServerInfoModal.tsx:133 +msgid "API Version" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:149 +msgid "Python Version" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:152 +msgid "Django Version" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:162 +msgid "Links" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:168 +msgid "InvenTree Documentation" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:169 +msgid "View Code on GitHub" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:170 +msgid "Credits" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:171 +msgid "Mobile App" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:172 +msgid "Submit Bug Report" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:183 +msgid "Copy version information" +msgstr "" + +#: src/components/modals/AboutInvenTreeModal.tsx:192 +#: src/components/modals/ServerInfoModal.tsx:147 +msgid "Dismiss" +msgstr "" + +#: src/components/modals/LicenseModal.tsx:39 +msgid "No license text available" +msgstr "" + +#: src/components/modals/LicenseModal.tsx:46 +msgid "No Information provided - this is likely a server issue" +msgstr "" + +#: src/components/modals/LicenseModal.tsx:71 +msgid "Loading license information" +msgstr "" + +#: src/components/modals/LicenseModal.tsx:77 +msgid "Failed to fetch license information" +msgstr "" + +#: src/components/modals/LicenseModal.tsx:85 +msgid "{key} Packages" +msgstr "" + +#: src/components/modals/QrCodeModal.tsx:24 +msgid "Unknown response" +msgstr "" + +#: src/components/modals/QrCodeModal.tsx:39 +msgid "No scans yet!" +msgstr "" + +#: src/components/modals/QrCodeModal.tsx:57 +msgid "Close modal" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:26 +#: src/pages/Index/Settings/SystemSettings.tsx:39 +msgid "Server" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:32 +msgid "Instance Name" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:38 +msgid "Database" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:47 +msgid "Debug Mode" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:50 +msgid "Server is running in debug mode" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:57 +msgid "Docker Mode" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:60 +msgid "Server is deployed using docker" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:66 +msgid "Plugin Support" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:71 +msgid "Plugin support enabled" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:73 +msgid "Plugin support disabled" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:80 +msgid "Server status" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:86 +msgid "Healthy" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:88 +msgid "Issues detected" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:97 +msgid "Background Worker" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:101 +msgid "Background worker not running" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:109 +msgid "Email Settings" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:113 +msgid "Email settings not configured" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:121 +#: src/tables/plugin/PluginListTable.tsx:144 +#: src/tables/plugin/PluginListTable.tsx:294 +msgid "Version" +msgstr "" + +#: src/components/modals/ServerInfoModal.tsx:127 +msgid "Server Version" +msgstr "" + +#: src/components/nav/Layout.tsx:73 +msgid "Nothing found..." +msgstr "" + +#: src/components/nav/MainMenu.tsx:52 +#: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:28 +msgid "Settings" +msgstr "" + +#: src/components/nav/MainMenu.tsx:59 +#: src/defaults/menuItems.tsx:15 +msgid "Account settings" +msgstr "" + +#: src/components/nav/MainMenu.tsx:67 +#: src/defaults/menuItems.tsx:58 +#: src/pages/Index/Settings/SystemSettings.tsx:315 +msgid "System Settings" +msgstr "" + +#: src/components/nav/MainMenu.tsx:77 +msgid "Change Color Mode" +msgstr "" + +#: src/components/nav/MainMenu.tsx:86 +#: src/defaults/actions.tsx:71 +#: src/defaults/menuItems.tsx:63 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:230 +msgid "Admin Center" +msgstr "" + +#: src/components/nav/MainMenu.tsx:96 +msgid "Logout" +msgstr "" + +#: src/components/nav/NavHoverMenu.tsx:65 +#: src/defaults/actions.tsx:60 +msgid "Open Navigation" +msgstr "" + +#: src/components/nav/NavHoverMenu.tsx:84 +msgid "View all" +msgstr "" + +#: src/components/nav/NavHoverMenu.tsx:100 +#: src/components/nav/NavHoverMenu.tsx:110 +msgid "Get started" +msgstr "" + +#: src/components/nav/NavHoverMenu.tsx:103 +msgid "Overview over high-level objects, functions and possible usecases." +msgstr "" + +#: src/components/nav/NavigationDrawer.tsx:57 +msgid "Navigation" +msgstr "" + +#: src/components/nav/NavigationDrawer.tsx:60 +msgid "Pages" +msgstr "" + +#: src/components/nav/NavigationDrawer.tsx:65 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:185 +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:45 +msgid "Plugins" +msgstr "" + +#: src/components/nav/NavigationDrawer.tsx:75 +#: src/defaults/actions.tsx:32 +msgid "Documentation" +msgstr "" + +#: src/components/nav/NavigationDrawer.tsx:78 +msgid "About" +msgstr "" + +#: src/components/nav/NotificationDrawer.tsx:93 +#: src/pages/Index/Settings/SystemSettings.tsx:110 +#: src/pages/Index/Settings/UserSettings.tsx:127 +#: src/pages/Notifications.tsx:65 +#: src/pages/Notifications.tsx:151 +msgid "Notifications" +msgstr "" + +#: src/components/nav/NotificationDrawer.tsx:95 +msgid "Mark all as read" +msgstr "" + +#: src/components/nav/NotificationDrawer.tsx:105 +msgid "View all notifications" +msgstr "" + +#: src/components/nav/NotificationDrawer.tsx:124 +msgid "You have no unread notifications." +msgstr "" + +#: src/components/nav/NotificationDrawer.tsx:140 +#: src/components/nav/NotificationDrawer.tsx:146 +#: src/tables/notifications/NotificationsTable.tsx:36 +msgid "Notification" +msgstr "" + +#: src/components/nav/NotificationDrawer.tsx:169 +#: src/pages/Notifications.tsx:73 +msgid "Mark as read" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:78 +msgid "results" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:370 +msgid "Enter search text" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:397 +msgid "Search Options" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:400 +msgid "Regex search" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:410 +msgid "Whole word search" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:451 +msgid "An error occurred during search query" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:462 +msgid "No results" +msgstr "" + +#: src/components/nav/SearchDrawer.tsx:465 +msgid "No results available for search query" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:85 +msgid "Error occurred while rendering plugin content" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:88 +msgid "Plugin did not provide panel rendering function" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:100 +msgid "No content provided for this plugin" +msgstr "" + +#: src/components/plugins/PluginPanel.tsx:113 +msgid "Error Loading Plugin" +msgstr "" + +#: src/components/render/Instance.tsx:222 +msgid "Unknown model: {model}" +msgstr "" + +#: src/components/render/ModelType.tsx:28 +#: src/forms/BuildForms.tsx:229 +#: src/forms/BuildForms.tsx:452 +#: src/forms/BuildForms.tsx:602 +#: src/forms/PurchaseOrderForms.tsx:641 +#: src/forms/StockForms.tsx:486 +#: src/forms/StockForms.tsx:523 +#: src/forms/StockForms.tsx:549 +#: src/forms/StockForms.tsx:577 +#: src/forms/StockForms.tsx:608 +#: src/forms/StockForms.tsx:643 +#: src/forms/StockForms.tsx:685 +#: src/forms/StockForms.tsx:723 +#: src/pages/build/BuildDetail.tsx:91 +#: src/pages/part/PartDetail.tsx:1080 +#: src/tables/build/BuildAllocatedStockTable.tsx:82 +#: src/tables/part/PartTable.tsx:28 +#: src/tables/part/RelatedPartTable.tsx:45 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:88 +#: src/tables/sales/SalesOrderAllocationTable.tsx:68 +#: src/tables/stock/StockTrackingTable.tsx:74 +msgid "Part" +msgstr "" + +#: src/components/render/ModelType.tsx:29 +#: src/defaults/links.tsx:29 +#: src/defaults/menuItems.tsx:33 +#: src/pages/Index/Settings/SystemSettings.tsx:172 +#: src/pages/part/CategoryDetail.tsx:119 +#: src/pages/part/CategoryDetail.tsx:243 +#: src/pages/part/CategoryDetail.tsx:273 +#: src/pages/part/PartDetail.tsx:836 +msgid "Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:37 +msgid "Part Parameter Template" +msgstr "" + +#: src/components/render/ModelType.tsx:38 +msgid "Part Parameter Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:44 +msgid "Part Test Template" +msgstr "" + +#: src/components/render/ModelType.tsx:45 +msgid "Part Test Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:51 +#: src/pages/company/SupplierPartDetail.tsx:199 +#: src/pages/company/SupplierPartDetail.tsx:356 +#: src/pages/stock/StockDetail.tsx:170 +#: src/tables/build/BuildAllocatedStockTable.tsx:131 +#: src/tables/part/PartPurchaseOrdersTable.tsx:49 +#: src/tables/purchasing/SupplierPartTable.tsx:68 +msgid "Supplier Part" +msgstr "" + +#: src/components/render/ModelType.tsx:52 +msgid "Supplier Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:60 +#: src/pages/company/ManufacturerPartDetail.tsx:132 +#: src/tables/part/PartPurchaseOrdersTable.tsx:55 +msgid "Manufacturer Part" +msgstr "" + +#: src/components/render/ModelType.tsx:61 +msgid "Manufacturer Parts" +msgstr "" + +#: src/components/render/ModelType.tsx:69 +#: src/pages/part/CategoryDetail.tsx:304 +msgid "Part Category" +msgstr "" + +#: src/components/render/ModelType.tsx:70 +#: src/pages/part/CategoryDetail.tsx:257 +#: src/pages/part/CategoryDetail.tsx:295 +#: src/pages/part/PartDetail.tsx:1070 +msgid "Part Categories" +msgstr "" + +#: src/components/render/ModelType.tsx:78 +#: src/forms/BuildForms.tsx:602 +#: src/pages/stock/StockDetail.tsx:608 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:94 +#: src/tables/stock/StockTrackingTable.tsx:45 +msgid "Stock Item" +msgstr "" + +#: src/components/render/ModelType.tsx:79 +#: src/pages/company/CompanyDetail.tsx:204 +#: src/pages/stock/LocationDetail.tsx:122 +#: src/pages/stock/LocationDetail.tsx:175 +#: src/pages/stock/LocationDetail.tsx:380 +msgid "Stock Items" +msgstr "" + +#: src/components/render/ModelType.tsx:87 +msgid "Stock Location" +msgstr "" + +#: src/components/render/ModelType.tsx:88 +#: src/pages/stock/LocationDetail.tsx:189 +#: src/pages/stock/LocationDetail.tsx:372 +#: src/pages/stock/StockDetail.tsx:600 +msgid "Stock Locations" +msgstr "" + +#: src/components/render/ModelType.tsx:96 +msgid "Stock Location Type" +msgstr "" + +#: src/components/render/ModelType.tsx:97 +msgid "Stock Location Types" +msgstr "" + +#: src/components/render/ModelType.tsx:101 +msgid "Stock History" +msgstr "" + +#: src/components/render/ModelType.tsx:102 +msgid "Stock Histories" +msgstr "" + +#: src/components/render/ModelType.tsx:106 +#: src/defaults/links.tsx:31 +#: src/defaults/menuItems.tsx:43 +msgid "Build" +msgstr "" + +#: src/components/render/ModelType.tsx:107 +msgid "Builds" +msgstr "" + +#: src/components/render/ModelType.tsx:115 +msgid "Build Line" +msgstr "" + +#: src/components/render/ModelType.tsx:116 +msgid "Build Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:123 +msgid "Build Item" +msgstr "" + +#: src/components/render/ModelType.tsx:124 +msgid "Build Items" +msgstr "" + +#: src/components/render/ModelType.tsx:128 +#: src/pages/company/CompanyDetail.tsx:339 +msgid "Company" +msgstr "" + +#: src/components/render/ModelType.tsx:129 +msgid "Companies" +msgstr "" + +#: src/components/render/ModelType.tsx:137 +#: src/tables/TableHoverCard.tsx:81 +#: src/tables/build/BuildOrderTable.tsx:132 +#: src/tables/purchasing/PurchaseOrderTable.tsx:64 +#: src/tables/sales/ReturnOrderTable.tsx:55 +#: src/tables/sales/SalesOrderTable.tsx:62 +msgid "Project Code" +msgstr "" + +#: src/components/render/ModelType.tsx:138 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:131 +msgid "Project Codes" +msgstr "" + +#: src/components/render/ModelType.tsx:144 +#: src/pages/part/pricing/PurchaseHistoryPanel.tsx:32 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:464 +#: src/tables/part/PartPurchaseOrdersTable.tsx:32 +#: src/tables/stock/StockTrackingTable.tsx:107 +msgid "Purchase Order" +msgstr "" + +#: src/components/render/ModelType.tsx:145 +#: src/pages/Index/Settings/SystemSettings.tsx:255 +#: src/pages/company/CompanyDetail.tsx:197 +#: src/pages/company/SupplierPartDetail.tsx:233 +#: src/pages/part/PartDetail.tsx:671 +#: src/pages/purchasing/PurchasingIndex.tsx:25 +msgid "Purchase Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:153 +msgid "Purchase Order Line" +msgstr "" + +#: src/components/render/ModelType.tsx:154 +msgid "Purchase Order Lines" +msgstr "" + +#: src/components/render/ModelType.tsx:158 +#: src/pages/build/BuildDetail.tsx:149 +#: src/pages/sales/SalesOrderDetail.tsx:504 +#: src/pages/stock/StockDetail.tsx:218 +#: src/tables/sales/SalesOrderAllocationTable.tsx:50 +#: src/tables/stock/StockTrackingTable.tsx:118 +msgid "Sales Order" +msgstr "" + +#: src/components/render/ModelType.tsx:159 +#: src/pages/Index/Settings/SystemSettings.tsx:270 +#: src/pages/company/CompanyDetail.tsx:217 +#: src/pages/part/PartDetail.tsx:678 +#: src/pages/sales/SalesIndex.tsx:26 +msgid "Sales Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:167 +msgid "Sales Order Shipment" +msgstr "" + +#: src/components/render/ModelType.tsx:168 +msgid "Sales Order Shipments" +msgstr "" + +#: src/components/render/ModelType.tsx:174 +#: src/pages/sales/ReturnOrderDetail.tsx:453 +#: src/tables/stock/StockTrackingTable.tsx:129 +msgid "Return Order" +msgstr "" + +#: src/components/render/ModelType.tsx:175 +#: src/pages/Index/Settings/SystemSettings.tsx:286 +#: src/pages/company/CompanyDetail.tsx:224 +#: src/pages/sales/SalesIndex.tsx:32 +msgid "Return Orders" +msgstr "" + +#: src/components/render/ModelType.tsx:183 +msgid "Return Order Line Item" +msgstr "" + +#: src/components/render/ModelType.tsx:184 +msgid "Return Order Line Items" +msgstr "" + +#: src/components/render/ModelType.tsx:188 +#: src/tables/company/AddressTable.tsx:48 +msgid "Address" +msgstr "" + +#: src/components/render/ModelType.tsx:189 +#: src/pages/company/CompanyDetail.tsx:254 +msgid "Addresses" +msgstr "" + +#: src/components/render/ModelType.tsx:195 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:191 +#: src/pages/sales/ReturnOrderDetail.tsx:170 +#: src/pages/sales/SalesOrderDetail.tsx:179 +msgid "Contact" +msgstr "" + +#: src/components/render/ModelType.tsx:196 +#: src/pages/company/CompanyDetail.tsx:248 +msgid "Contacts" +msgstr "" + +#: src/components/render/ModelType.tsx:202 +msgid "Owner" +msgstr "" + +#: src/components/render/ModelType.tsx:203 +msgid "Owners" +msgstr "" + +#: src/components/render/ModelType.tsx:209 +#: src/tables/settings/ImportSessionTable.tsx:121 +#: src/tables/stock/StockItemTestResultTable.tsx:204 +#: src/tables/stock/StockTrackingTable.tsx:195 +msgid "User" +msgstr "" + +#: src/components/render/ModelType.tsx:210 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:101 +#: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:13 +msgid "Users" +msgstr "" + +#: src/components/render/ModelType.tsx:216 +msgid "Group" +msgstr "" + +#: src/components/render/ModelType.tsx:217 +#: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:20 +#: src/tables/settings/UserTable.tsx:138 +#: src/tables/settings/UserTable.tsx:201 +msgid "Groups" +msgstr "" + +#: src/components/render/ModelType.tsx:224 +msgid "Import Session" +msgstr "" + +#: src/components/render/ModelType.tsx:225 +msgid "Import Sessions" +msgstr "" + +#: src/components/render/ModelType.tsx:231 +msgid "Label Template" +msgstr "" + +#: src/components/render/ModelType.tsx:232 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:167 +msgid "Label Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:238 +msgid "Report Template" +msgstr "" + +#: src/components/render/ModelType.tsx:239 +#: src/pages/Index/Settings/AdminCenter/Index.tsx:173 +msgid "Report Templates" +msgstr "" + +#: src/components/render/ModelType.tsx:245 +msgid "Plugin Configuration" +msgstr "" + +#: src/components/render/ModelType.tsx:246 +msgid "Plugin Configurations" +msgstr "" + +#: src/components/render/ModelType.tsx:252 +msgid "Content Type" +msgstr "" + +#: src/components/render/ModelType.tsx:253 +msgid "Content Types" +msgstr "" + +#: src/components/render/Order.tsx:121 +msgid "Shipment" +msgstr "" + +#: src/components/render/Part.tsx:25 +#: src/components/render/Plugin.tsx:17 +#: src/pages/company/CompanyDetail.tsx:325 +#: src/pages/company/SupplierPartDetail.tsx:341 +#: src/pages/part/PartDetail.tsx:897 +msgid "Inactive" +msgstr "" + +#: src/components/render/Part.tsx:28 +#: src/tables/bom/BomTable.tsx:204 +#: src/tables/part/PartTable.tsx:134 +msgid "No stock" +msgstr "" + +#: src/components/render/Part.tsx:30 +#: src/defaults/links.tsx:30 +#: src/defaults/menuItems.tsx:38 +#: src/pages/Index/Settings/SystemSettings.tsx:205 +#: src/pages/part/PartDetail.tsx:551 +#: src/pages/stock/LocationDetail.tsx:352 +#: src/pages/stock/StockDetail.tsx:408 +#: src/tables/stock/StockItemTable.tsx:68 +msgid "Stock" +msgstr "" + +#: src/components/render/Stock.tsx:61 +#: src/pages/stock/StockDetail.tsx:147 +#: src/pages/stock/StockDetail.tsx:565 +#: src/tables/build/BuildAllocatedStockTable.tsx:102 +#: src/tables/sales/SalesOrderAllocationTable.tsx:80 +msgid "Serial Number" +msgstr "" + +#: src/components/render/Stock.tsx:63 +#: src/forms/BuildForms.tsx:234 +#: src/forms/BuildForms.tsx:602 +#: src/forms/PurchaseOrderForms.tsx:641 +#: src/pages/part/pricing/BomPricingPanel.tsx:109 +#: src/pages/part/pricing/PriceBreakPanel.tsx:89 +#: src/pages/part/pricing/PriceBreakPanel.tsx:171 +#: src/pages/stock/StockDetail.tsx:142 +#: src/pages/stock/StockDetail.tsx:571 +#: src/tables/build/BuildOrderTestTable.tsx:198 +#: src/tables/part/PartPurchaseOrdersTable.tsx:92 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:143 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:171 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 +#: src/tables/stock/StockTrackingTable.tsx:59 +msgid "Quantity" +msgstr "" + +#: src/components/settings/SettingList.tsx:67 +msgid "Edit Setting" +msgstr "" + +#: src/components/settings/SettingList.tsx:78 +#: src/components/settings/SettingList.tsx:108 +msgid "Setting {0} updated successfully" +msgstr "" + +#: src/components/settings/SettingList.tsx:107 +msgid "Setting updated" +msgstr "" + +#: src/components/settings/SettingList.tsx:117 +msgid "Error editing setting" +msgstr "" + +#: src/components/settings/SettingList.tsx:162 +msgid "No settings specified" +msgstr "" + +#: src/components/widgets/DisplayWidget.tsx:11 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:102 +msgid "Display Settings" +msgstr "" + +#: src/components/widgets/DisplayWidget.tsx:15 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:123 +msgid "Color Mode" +msgstr "" + +#: src/components/widgets/DisplayWidget.tsx:21 +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:108 +msgid "Language" +msgstr "" + +#: src/components/widgets/FeedbackWidget.tsx:19 +msgid "Something is new: Platform UI" +msgstr "" + +#: src/components/widgets/FeedbackWidget.tsx:21 +msgid "We are building a new UI with a modern stack. What you currently see is not fixed and will be redesigned but demonstrates the UI/UX possibilities we will have going forward." +msgstr "" + +#: src/components/widgets/FeedbackWidget.tsx:32 +msgid "Provide Feedback" +msgstr "" + +#: src/components/widgets/GetStartedWidget.tsx:11 +msgid "Getting started" +msgstr "" + +#: src/components/widgets/WidgetLayout.tsx:166 +msgid "Layout" +msgstr "" + +#: src/components/widgets/WidgetLayout.tsx:172 +msgid "Reset Layout" +msgstr "" + +#: src/components/widgets/WidgetLayout.tsx:185 +msgid "Stop Edit" +msgstr "" + +#: src/components/widgets/WidgetLayout.tsx:185 +msgid "Edit Layout" +msgstr "" + +#: src/components/widgets/WidgetLayout.tsx:191 +msgid "Appearance" +msgstr "" + +#: src/components/widgets/WidgetLayout.tsx:203 +msgid "Show Boxes" +msgstr "" + +#: src/contexts/LanguageContext.tsx:20 +msgid "Arabic" +msgstr "" + +#: src/contexts/LanguageContext.tsx:21 +msgid "Bulgarian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:22 +msgid "Czech" +msgstr "" + +#: src/contexts/LanguageContext.tsx:23 +msgid "Danish" +msgstr "" + +#: src/contexts/LanguageContext.tsx:24 +msgid "German" +msgstr "" + +#: src/contexts/LanguageContext.tsx:25 +msgid "Greek" +msgstr "" + +#: src/contexts/LanguageContext.tsx:26 +msgid "English" +msgstr "" + +#: src/contexts/LanguageContext.tsx:27 +msgid "Spanish" +msgstr "" + +#: src/contexts/LanguageContext.tsx:28 +msgid "Spanish (Mexican)" +msgstr "" + +#: src/contexts/LanguageContext.tsx:29 +msgid "Estonian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:30 +msgid "Farsi / Persian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:31 +msgid "Finnish" +msgstr "" + +#: src/contexts/LanguageContext.tsx:32 +msgid "French" +msgstr "" + +#: src/contexts/LanguageContext.tsx:33 +msgid "Hebrew" +msgstr "" + +#: src/contexts/LanguageContext.tsx:34 +msgid "Hindi" +msgstr "" + +#: src/contexts/LanguageContext.tsx:35 +msgid "Hungarian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:36 +msgid "Italian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:37 +msgid "Japanese" +msgstr "" + +#: src/contexts/LanguageContext.tsx:38 +msgid "Korean" +msgstr "" + +#: src/contexts/LanguageContext.tsx:39 +msgid "Lithuanian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:40 +msgid "Latvian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:41 +msgid "Dutch" +msgstr "" + +#: src/contexts/LanguageContext.tsx:42 +msgid "Norwegian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:43 +msgid "Polish" +msgstr "" + +#: src/contexts/LanguageContext.tsx:44 +msgid "Portuguese" +msgstr "" + +#: src/contexts/LanguageContext.tsx:45 +msgid "Portuguese (Brazilian)" +msgstr "" + +#: src/contexts/LanguageContext.tsx:46 +msgid "Romanian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:47 +msgid "Russian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:48 +msgid "Slovak" +msgstr "" + +#: src/contexts/LanguageContext.tsx:49 +msgid "Slovenian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:50 +msgid "Swedish" +msgstr "" + +#: src/contexts/LanguageContext.tsx:51 +msgid "Thai" +msgstr "" + +#: src/contexts/LanguageContext.tsx:52 +msgid "Turkish" +msgstr "" + +#: src/contexts/LanguageContext.tsx:53 +msgid "Ukrainian" +msgstr "" + +#: src/contexts/LanguageContext.tsx:54 +msgid "Vietnamese" +msgstr "" + +#: src/contexts/LanguageContext.tsx:55 +msgid "Chinese (Simplified)" +msgstr "" + +#: src/contexts/LanguageContext.tsx:56 +msgid "Chinese (Traditional)" +msgstr "" + +#: src/defaults/actions.tsx:18 +#: src/defaults/links.tsx:27 +#: src/defaults/menuItems.tsx:9 +msgid "Home" +msgstr "" + +#: src/defaults/actions.tsx:25 +#: src/defaults/links.tsx:28 +#: src/defaults/menuItems.tsx:28 +#: src/pages/Index/Dashboard.tsx:19 +#: src/pages/Index/Settings/UserSettings.tsx:47 +msgid "Dashboard" +msgstr "" + +#: src/defaults/actions.tsx:26 +msgid "Go to the InvenTree dashboard" +msgstr "" + +#: src/defaults/actions.tsx:33 +msgid "Visit the documentation to learn more about InvenTree" +msgstr "" + +#: src/defaults/actions.tsx:39 +#: src/defaults/links.tsx:98 +#: src/defaults/links.tsx:128 +msgid "About InvenTree" +msgstr "" + +#: src/defaults/actions.tsx:40 +#: src/defaults/links.tsx:129 +msgid "About the InvenTree org" +msgstr "" + +#: src/defaults/actions.tsx:46 +msgid "Server Information" +msgstr "" + +#: src/defaults/actions.tsx:47 +#: src/defaults/links.tsx:123 +msgid "About this Inventree instance" +msgstr "" + +#: src/defaults/actions.tsx:53 +#: src/defaults/links.tsx:111 +msgid "License Information" +msgstr "" + +#: src/defaults/actions.tsx:54 +#: src/defaults/links.tsx:135 +msgid "Licenses for dependencies of the service" +msgstr "" + +#: src/defaults/actions.tsx:61 +msgid "Open the main navigation menu" +msgstr "" + +#: src/defaults/actions.tsx:72 +msgid "Go to the Admin Center" +msgstr "" + +#: src/defaults/dashboardItems.tsx:15 +msgid "Subscribed Parts" +msgstr "" + +#: src/defaults/dashboardItems.tsx:22 +msgid "Subscribed Categories" +msgstr "" + +#: src/defaults/dashboardItems.tsx:29 +msgid "Latest Parts" +msgstr "" + +#: src/defaults/dashboardItems.tsx:36 +msgid "BOM Waiting Validation" +msgstr "" + +#: src/defaults/dashboardItems.tsx:43 +msgid "Recently Updated" +msgstr "" + +#: src/defaults/dashboardItems.tsx:50 +#: src/tables/part/PartTable.tsx:238 +msgid "Low Stock" +msgstr "" + +#: src/defaults/dashboardItems.tsx:57 +msgid "Depleted Stock" +msgstr "" + +#: src/defaults/dashboardItems.tsx:64 +msgid "Required for Build Orders" +msgstr "" + +#: src/defaults/dashboardItems.tsx:71 +msgid "Expired Stock" +msgstr "" + +#: src/defaults/dashboardItems.tsx:78 +msgid "Stale Stock" +msgstr "" + +#: src/defaults/dashboardItems.tsx:85 +msgid "Build Orders In Progress" +msgstr "" + +#: src/defaults/dashboardItems.tsx:92 +msgid "Overdue Build Orders" +msgstr "" + +#: src/defaults/dashboardItems.tsx:99 +msgid "Outstanding Purchase Orders" +msgstr "" + +#: src/defaults/dashboardItems.tsx:106 +msgid "Overdue Purchase Orders" +msgstr "" + +#: src/defaults/dashboardItems.tsx:113 +msgid "Outstanding Sales Orders" +msgstr "" + +#: src/defaults/dashboardItems.tsx:120 +msgid "Overdue Sales Orders" +msgstr "" + +#: src/defaults/dashboardItems.tsx:127 +msgid "Current News" +msgstr "" + +#: src/defaults/links.tsx:12 +#: src/pages/company/CompanyDetail.tsx:97 +msgid "Website" +msgstr "" + +#: src/defaults/links.tsx:17 +msgid "GitHub" +msgstr "" + +#: src/defaults/links.tsx:22 +msgid "Demo" +msgstr "" + +#: src/defaults/links.tsx:33 +#: src/defaults/menuItems.tsx:48 +#: src/pages/company/ManufacturerDetail.tsx:9 +#: src/pages/company/ManufacturerPartDetail.tsx:262 +#: src/pages/company/SupplierDetail.tsx:9 +#: src/pages/company/SupplierPartDetail.tsx:328 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:467 +#: src/pages/purchasing/PurchasingIndex.tsx:60 +msgid "Purchasing" +msgstr "" + +#: src/defaults/links.tsx:37 +#: src/defaults/menuItems.tsx:53 +#: src/pages/company/CustomerDetail.tsx:9 +#: src/pages/sales/ReturnOrderDetail.tsx:458 +#: src/pages/sales/SalesIndex.tsx:53 +#: src/pages/sales/SalesOrderDetail.tsx:509 +msgid "Sales" +msgstr "" + +#: src/defaults/links.tsx:41 +#: src/defaults/menuItems.tsx:71 +#: src/pages/Index/Playground.tsx:217 +msgid "Playground" +msgstr "" + +#: src/defaults/links.tsx:55 +msgid "Getting Started" +msgstr "" + +#: src/defaults/links.tsx:56 +msgid "Getting started with InvenTree" +msgstr "" + +#: src/defaults/links.tsx:62 +msgid "API" +msgstr "" + +#: src/defaults/links.tsx:63 +msgid "InvenTree API documentation" +msgstr "" + +#: src/defaults/links.tsx:68 +msgid "Developer Manual" +msgstr "" + +#: src/defaults/links.tsx:69 +msgid "InvenTree developer manual" +msgstr "" + +#: src/defaults/links.tsx:74 +msgid "FAQ" +msgstr "" + +#: src/defaults/links.tsx:75 +msgid "Frequently asked questions" +msgstr "" + +#: src/defaults/links.tsx:85 +#: src/defaults/links.tsx:122 +msgid "System Information" +msgstr "" + +#: src/defaults/links.tsx:134 +msgid "Licenses" +msgstr "" + +#: src/defaults/menuItems.tsx:17 +msgid "User attributes and design settings." +msgstr "" + +#: src/defaults/menuItems.tsx:21 +#: src/pages/Index/Scan.tsx:763 +msgid "Scanning" +msgstr "" + +#: src/defaults/menuItems.tsx:23 +msgid "View for interactive scanning and multiple actions." +msgstr "" + +#: src/forms/BuildForms.tsx:174 +msgid "Next serial number" +msgstr "" + +#: src/forms/BuildForms.tsx:178 +msgid "Latest serial number" +msgstr "" + +#: src/forms/BuildForms.tsx:250 +msgid "Remove output" +msgstr "" + +#: src/forms/BuildForms.tsx:320 +msgid "Complete Build Outputs" +msgstr "" + +#: src/forms/BuildForms.tsx:324 +msgid "Build outputs have been completed" +msgstr "" + +#: src/forms/BuildForms.tsx:385 +msgid "Scrap Build Outputs" +msgstr "" + +#: src/forms/BuildForms.tsx:389 +msgid "Build outputs have been scrapped" +msgstr "" + +#: src/forms/BuildForms.tsx:409 +#: src/forms/BuildForms.tsx:433 +msgid "Cancel Build Outputs" +msgstr "" + +#: src/forms/BuildForms.tsx:410 +msgid "Selected build outputs will be deleted" +msgstr "" + +#: src/forms/BuildForms.tsx:437 +msgid "Build outputs have been cancelled" +msgstr "" + +#: src/forms/BuildForms.tsx:457 +#: src/forms/BuildForms.tsx:602 +#: src/tables/build/BuildLineTable.tsx:54 +#: src/tables/stock/StockItemTable.tsx:305 +msgid "Allocated" +msgstr "" + +#: src/forms/BuildForms.tsx:472 +msgid "Remove line" +msgstr "" + +#: src/forms/BuildForms.tsx:631 +#: src/pages/build/BuildDetail.tsx:201 +msgid "Source Location" +msgstr "" + +#: src/forms/BuildForms.tsx:632 +msgid "Select the source location for the stock allocation" +msgstr "" + +#: src/forms/BuildForms.tsx:652 +#: src/tables/build/BuildLineTable.tsx:293 +#: src/tables/build/BuildLineTable.tsx:394 +#: src/tables/build/BuildLineTable.tsx:454 +msgid "Allocate Stock" +msgstr "" + +#: src/forms/BuildForms.tsx:655 +msgid "Stock items allocated" +msgstr "" + +#: src/forms/PartForms.tsx:124 +msgid "Parent part category" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:289 +msgid "Choose Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:297 +msgid "Item Destination selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:306 +msgid "Part category default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:316 +msgid "Received stock location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:321 +msgid "Default location selected" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:332 +#: src/forms/PurchaseOrderForms.tsx:428 +msgid "Scan Barcode" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:380 +msgid "Set Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:388 +msgid "Assign Batch Code{0}" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:397 +#: src/forms/StockForms.tsx:411 +msgid "Adjust Packaging" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:405 +msgid "Change Status" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:411 +msgid "Add Note" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:458 +#: src/forms/StockForms.tsx:486 +#: src/forms/StockForms.tsx:523 +#: src/forms/StockForms.tsx:549 +#: src/forms/StockForms.tsx:577 +#: src/forms/StockForms.tsx:608 +#: src/forms/StockForms.tsx:643 +#: src/forms/StockForms.tsx:685 +#: src/forms/StockForms.tsx:723 +#: src/pages/stock/StockDetail.tsx:178 +#: src/tables/ColumnRenderers.tsx:49 +#: src/tables/stock/StockTrackingTable.tsx:85 +msgid "Location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:473 +msgid "Store at default location" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:488 +msgid "Store at line item destination" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:500 +msgid "Store with already received stock" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:521 +#: src/pages/build/BuildDetail.tsx:215 +#: src/pages/stock/StockDetail.tsx:159 +#: src/pages/stock/StockDetail.tsx:583 +#: src/tables/build/BuildAllocatedStockTable.tsx:109 +#: src/tables/build/BuildOrderTestTable.tsx:189 +#: src/tables/sales/SalesOrderAllocationTable.tsx:87 +msgid "Batch Code" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:533 +msgid "Serial numbers" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:543 +#: src/forms/StockForms.tsx:428 +#: src/pages/company/SupplierPartDetail.tsx:152 +#: src/pages/company/SupplierPartDetail.tsx:203 +#: src/pages/stock/StockDetail.tsx:241 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:192 +msgid "Packaging" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:556 +#: src/pages/build/BuildDetail.tsx:105 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:144 +#: src/pages/sales/ReturnOrderDetail.tsx:117 +#: src/pages/sales/SalesOrderDetail.tsx:123 +#: src/tables/build/BuildOrderTable.tsx:114 +#: src/tables/machine/MachineListTable.tsx:334 +#: src/tables/part/PartPurchaseOrdersTable.tsx:37 +#: src/tables/purchasing/PurchaseOrderTable.tsx:55 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:132 +#: src/tables/sales/ReturnOrderTable.tsx:46 +#: src/tables/sales/SalesOrderTable.tsx:53 +#: src/tables/settings/CustomStateTable.tsx:57 +#: src/tables/settings/ImportSessionTable.tsx:115 +#: src/tables/stock/StockItemTable.tsx:294 +#: src/tables/stock/StockTrackingTable.tsx:52 +msgid "Status" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:565 +#: src/pages/company/SupplierPartDetail.tsx:106 +#: src/tables/ColumnRenderers.tsx:132 +msgid "Note" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:641 +#: src/pages/company/SupplierPartDetail.tsx:124 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:57 +msgid "SKU" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:641 +#: src/tables/part/PartPurchaseOrdersTable.tsx:120 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:127 +msgid "Received" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:641 +#: src/forms/StockForms.tsx:486 +#: src/forms/StockForms.tsx:523 +#: src/forms/StockForms.tsx:549 +#: src/forms/StockForms.tsx:577 +#: src/forms/StockForms.tsx:608 +#: src/forms/StockForms.tsx:643 +#: src/forms/StockForms.tsx:685 +#: src/forms/StockForms.tsx:723 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:413 +#: src/tables/RowActions.tsx:113 +msgid "Actions" +msgstr "" + +#: src/forms/PurchaseOrderForms.tsx:653 +msgid "Receive Line Items" +msgstr "" + +#: src/forms/StockForms.tsx:109 +msgid "Add given quantity as packs instead of individual items" +msgstr "" + +#: src/forms/StockForms.tsx:122 +msgid "Enter initial quantity for this stock item" +msgstr "" + +#: src/forms/StockForms.tsx:129 +msgid "Serial Numbers" +msgstr "" + +#: src/forms/StockForms.tsx:130 +msgid "Enter serial numbers for new stock (or leave blank)" +msgstr "" + +#: src/forms/StockForms.tsx:147 +#: src/pages/stock/StockDetail.tsx:112 +msgid "Stock Status" +msgstr "" + +#: src/forms/StockForms.tsx:186 +#: src/pages/stock/StockDetail.tsx:431 +#: src/tables/stock/StockItemTable.tsx:417 +#: src/tables/stock/StockItemTable.tsx:535 +msgid "Add Stock Item" +msgstr "" + +#: src/forms/StockForms.tsx:352 +msgid "Loading..." +msgstr "" + +#: src/forms/StockForms.tsx:399 +msgid "Move to default location" +msgstr "" + +#: src/forms/StockForms.tsx:486 +#: src/forms/StockForms.tsx:523 +#: src/forms/StockForms.tsx:549 +#: src/forms/StockForms.tsx:577 +#: src/forms/StockForms.tsx:608 +#: src/forms/StockForms.tsx:643 +#: src/forms/StockForms.tsx:685 +#: src/forms/StockForms.tsx:723 +#: src/pages/part/PartDetail.tsx:231 +#: src/pages/part/PartDetail.tsx:855 +#: src/tables/stock/StockItemTable.tsx:325 +msgid "In Stock" +msgstr "" + +#: src/forms/StockForms.tsx:486 +msgid "Move" +msgstr "" + +#: src/forms/StockForms.tsx:549 +#: src/pages/stock/StockDetail.tsx:503 +#: src/tables/stock/StockItemTestResultTable.tsx:346 +msgid "Add" +msgstr "" + +#: src/forms/StockForms.tsx:577 +#: src/pages/Index/Scan.tsx:280 +#: src/pages/stock/StockDetail.tsx:493 +msgid "Count" +msgstr "" + +#: src/forms/StockForms.tsx:825 +msgid "Add Stock" +msgstr "" + +#: src/forms/StockForms.tsx:834 +msgid "Remove Stock" +msgstr "" + +#: src/forms/StockForms.tsx:843 +#: src/pages/part/PartDetail.tsx:1025 +msgid "Transfer Stock" +msgstr "" + +#: src/forms/StockForms.tsx:852 +#: src/pages/part/PartDetail.tsx:1014 +#: src/pages/stock/LocationDetail.tsx:314 +#: src/pages/stock/LocationDetail.tsx:318 +#: src/tables/stock/StockItemTable.tsx:467 +#: src/tables/stock/StockItemTable.tsx:471 +msgid "Count Stock" +msgstr "" + +#: src/forms/StockForms.tsx:861 +msgid "Change Stock Status" +msgstr "" + +#: src/forms/StockForms.tsx:870 +msgid "Merge Stock" +msgstr "" + +#: src/forms/StockForms.tsx:889 +msgid "Delete Stock Items" +msgstr "" + +#: src/forms/StockForms.tsx:896 +msgid "Parent stock location" +msgstr "" + +#: src/functions/auth.tsx:117 +msgid "Logged Out" +msgstr "" + +#: src/functions/auth.tsx:118 +msgid "Successfully logged out" +msgstr "" + +#: src/functions/auth.tsx:156 +msgid "Check your inbox for a reset link. This only works if you have an account. Check in spam too." +msgstr "" + +#: src/functions/auth.tsx:163 +#: src/pages/Auth/Set-Password.tsx:39 +msgid "Reset failed" +msgstr "" + +#: src/functions/auth.tsx:194 +msgid "Logged In" +msgstr "" + +#: src/functions/auth.tsx:195 +msgid "Successfully logged in" +msgstr "" + +#: src/functions/notifications.tsx:10 +msgid "Not implemented" +msgstr "" + +#: src/functions/notifications.tsx:11 +msgid "This feature is not yet implemented" +msgstr "" + +#: src/functions/notifications.tsx:21 +msgid "Permission denied" +msgstr "" + +#: src/functions/notifications.tsx:22 +msgid "You do not have permission to perform this action" +msgstr "" + +#: src/functions/notifications.tsx:33 +msgid "Invalid Return Code" +msgstr "" + +#: src/functions/notifications.tsx:34 +msgid "Server returned status {returnCode}" +msgstr "" + +#: src/hooks/UseForm.tsx:88 +msgid "Item Created" +msgstr "" + +#: src/hooks/UseForm.tsx:105 +msgid "Item Updated" +msgstr "" + +#: src/hooks/UseForm.tsx:124 +msgid "Item Deleted" +msgstr "" + +#: src/hooks/UseForm.tsx:128 +msgid "Are you sure you want to delete this item?" +msgstr "" + +#: src/pages/Auth/Logged-In.tsx:22 +msgid "Checking if you are already logged in" +msgstr "" + +#: src/pages/Auth/Login.tsx:31 +#: src/pages/Index/Scan.tsx:343 +msgid "No selection" +msgstr "" + +#: src/pages/Auth/Login.tsx:87 +msgid "Welcome, log in below" +msgstr "" + +#: src/pages/Auth/Login.tsx:89 +msgid "Register below" +msgstr "" + +#: src/pages/Auth/Logout.tsx:22 +msgid "Logging out" +msgstr "" + +#: src/pages/Auth/Reset.tsx:41 +#: src/pages/Auth/Set-Password.tsx:112 +msgid "Send mail" +msgstr "" + +#: src/pages/Auth/Set-Password.tsx:30 +msgid "Token invalid" +msgstr "" + +#: src/pages/Auth/Set-Password.tsx:31 +msgid "You need to provide a valid token to set a new password. Check your inbox for a reset link." +msgstr "" + +#: src/pages/Auth/Set-Password.tsx:49 +msgid "No token provided" +msgstr "" + +#: src/pages/Auth/Set-Password.tsx:50 +msgid "You need to provide a token to set a new password. Check your inbox for a reset link." +msgstr "" + +#: src/pages/Auth/Set-Password.tsx:73 +msgid "Password set" +msgstr "" + +#: src/pages/Auth/Set-Password.tsx:74 +msgid "The password was set successfully. You can now login with your new password" +msgstr "" + +#: src/pages/Auth/Set-Password.tsx:101 +msgid "Set new password" +msgstr "" + +#: src/pages/ErrorPage.tsx:16 +msgid "Error: {0}" +msgstr "" + +#: src/pages/ErrorPage.tsx:23 +msgid "An unexpected error has occurred" +msgstr "" + +#: src/pages/Index/Dashboard.tsx:22 +msgid "Autoupdate" +msgstr "" + +#: src/pages/Index/Dashboard.tsx:26 +msgid "This page is a replacement for the old start page with the same information. This page will be deprecated and replaced by the home page." +msgstr "" + +#: src/pages/Index/Home.tsx:58 +msgid "Welcome to your Dashboard{0}" +msgstr "" + +#: src/pages/Index/Playground.tsx:222 +msgid "This page is a showcase for the possibilities of Platform UI." +msgstr "" + +#: src/pages/Index/Scan.tsx:216 +msgid "Manual input" +msgstr "" + +#: src/pages/Index/Scan.tsx:217 +msgid "Image Barcode" +msgstr "" + +#: src/pages/Index/Scan.tsx:261 +msgid "Selected elements are not known" +msgstr "" + +#: src/pages/Index/Scan.tsx:268 +msgid "Multiple object types selected" +msgstr "" + +#: src/pages/Index/Scan.tsx:275 +msgid "Actions for {0}" +msgstr "" + +#: src/pages/Index/Scan.tsx:296 +msgid "Scan Page" +msgstr "" + +#: src/pages/Index/Scan.tsx:299 +msgid "This page can be used for continuously scanning items and taking actions on them." +msgstr "" + +#: src/pages/Index/Scan.tsx:306 +msgid "Toggle Fullscreen" +msgstr "" + +#: src/pages/Index/Scan.tsx:319 +msgid "Select the input method you want to use to scan items." +msgstr "" + +#: src/pages/Index/Scan.tsx:321 +msgid "Input" +msgstr "" + +#: src/pages/Index/Scan.tsx:328 +msgid "Select input method" +msgstr "" + +#: src/pages/Index/Scan.tsx:329 +msgid "Nothing found" +msgstr "" + +#: src/pages/Index/Scan.tsx:337 +msgid "Depending on the selected parts actions will be shown here. Not all barcode types are supported currently." +msgstr "" + +#: src/pages/Index/Scan.tsx:339 +msgid "Action" +msgstr "" + +#: src/pages/Index/Scan.tsx:348 +msgid "{0} items selected" +msgstr "" + +#: src/pages/Index/Scan.tsx:351 +msgid "General Actions" +msgstr "" + +#: src/pages/Index/Scan.tsx:365 +msgid "Lookup part" +msgstr "" + +#: src/pages/Index/Scan.tsx:373 +msgid "Open Link" +msgstr "" + +#: src/pages/Index/Scan.tsx:389 +msgid "History is locally kept in this browser." +msgstr "" + +#: src/pages/Index/Scan.tsx:390 +msgid "The history is kept in this browser's local storage. So it won't be shared with other users or other devices but is persistent through reloads. You can select items in the history to perform actions on them. To add items, scan/enter them in the Input area." +msgstr "" + +#: src/pages/Index/Scan.tsx:392 +#: src/pages/Notifications.tsx:100 +msgid "History" +msgstr "" + +#: src/pages/Index/Scan.tsx:398 +msgid "Delete History" +msgstr "" + +#: src/pages/Index/Scan.tsx:463 +msgid "No history" +msgstr "" + +#: src/pages/Index/Scan.tsx:481 +msgid "Item" +msgstr "" + +#: src/pages/Index/Scan.tsx:484 +msgid "Type" +msgstr "" + +#: src/pages/Index/Scan.tsx:487 +msgid "Source" +msgstr "" + +#: src/pages/Index/Scan.tsx:490 +msgid "Scanned at" +msgstr "" + +#: src/pages/Index/Scan.tsx:547 +msgid "Enter item serial or data" +msgstr "" + +#: src/pages/Index/Scan.tsx:559 +msgid "Add dummy item" +msgstr "" + +#: src/pages/Index/Scan.tsx:569 +msgid "Start scanning by selecting a camera and pressing the play button." +msgstr "" + +#: src/pages/Index/Scan.tsx:650 +msgid "Error while getting camera" +msgstr "" + +#: src/pages/Index/Scan.tsx:673 +msgid "Error while scanning" +msgstr "" + +#: src/pages/Index/Scan.tsx:687 +msgid "Error while stopping" +msgstr "" + +#: src/pages/Index/Scan.tsx:745 +msgid "Stop scanning" +msgstr "" + +#: src/pages/Index/Scan.tsx:754 +msgid "Start scanning" +msgstr "" + +#: src/pages/Index/Scan.tsx:763 +msgid "Not scanning" +msgstr "" + +#: src/pages/Index/Scan.tsx:775 +msgid "Select Camera" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:28 +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:50 +msgid "Edit User Information" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:32 +msgid "User details updated" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:41 +msgid "User Details" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:44 +msgid "User Actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:48 +msgid "Edit User" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:54 +msgid "Set Password" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:56 +msgid "Set User Password" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:73 +msgid "First Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:79 +msgid "Last Name" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:85 +msgid "Staff Access" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx:93 +#: src/tables/settings/UserTable.tsx:294 +msgid "Superuser" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:55 +msgid "Single Sign On Accounts" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:62 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:80 +msgid "Not enabled" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:65 +msgid "Single Sign On is not enabled for this server" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:69 +msgid "Multifactor" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:83 +msgid "Multifactor authentication is not configured for your account" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:92 +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:407 +msgid "Token" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:139 +msgid "The following email addresses are associated with your account:" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:151 +msgid "Primary" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:156 +msgid "Verified" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:160 +msgid "Unverified" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:173 +msgid "Add Email Address" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:176 +msgid "E-Mail" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:177 +msgid "E-Mail address" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:189 +msgid "Make Primary" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:194 +msgid "Re-send Verification" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:205 +msgid "Add Email" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:270 +msgid "Provider has not been configured" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:280 +msgid "Not configured" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:283 +msgid "There are no social network accounts connected to this account." +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:293 +msgid "You can sign in to your account using any of the following third party accounts" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:368 +msgid "Token is used - no actions" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:375 +msgid "Revoke" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:389 +msgid "No tokens configured" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:398 +#: src/pages/part/PartDetail.tsx:305 +#: src/tables/bom/UsedInTable.tsx:84 +#: src/tables/build/BuildOrderTable.tsx:109 +#: src/tables/company/CompanyTable.tsx:61 +#: src/tables/company/CompanyTable.tsx:95 +#: src/tables/machine/MachineListTable.tsx:331 +#: src/tables/machine/MachineListTable.tsx:593 +#: src/tables/part/ParametricPartTable.tsx:223 +#: src/tables/part/PartTable.tsx:178 +#: src/tables/part/PartVariantTable.tsx:15 +#: src/tables/plugin/PluginListTable.tsx:149 +#: src/tables/plugin/PluginListTable.tsx:271 +#: src/tables/plugin/PluginListTable.tsx:561 +#: src/tables/purchasing/SupplierPartTable.tsx:98 +#: src/tables/purchasing/SupplierPartTable.tsx:187 +#: src/tables/settings/UserTable.tsx:284 +#: src/tables/stock/StockItemTable.tsx:289 +msgid "Active" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:401 +msgid "Expiry" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:404 +msgid "Last Seen" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:89 +msgid "Bars" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:90 +msgid "Oval" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:91 +msgid "Dots" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:116 +msgid "Use pseudo language" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:134 +msgid "Highlight color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:146 +msgid "Example" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:152 +msgid "White color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:168 +msgid "Black color" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:184 +msgid "Border Radius" +msgstr "" + +#: src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx:200 +msgid "Loader" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:27 +#: src/tables/ColumnRenderers.tsx:248 +msgid "Currency" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:32 +msgid "Rate" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:44 +msgid "Exchange rates updated" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:50 +msgid "Exchange rate update error" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:62 +msgid "Refresh currency exchange rates" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:99 +msgid "Last fetched" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/CurrencyManagmentPanel.tsx:100 +msgid "Base currency" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:107 +msgid "Data Import" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:113 +msgid "Background Tasks" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:119 +msgid "Error Reports" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:125 +msgid "Currencies" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:143 +msgid "Custom States" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:149 +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:58 +msgid "Custom Units" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:155 +#: src/pages/part/CategoryDetail.tsx:263 +msgid "Part Parameters" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:161 +msgid "Category Parameters" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:179 +msgid "Location Types" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:191 +#: src/tables/machine/MachineTypeTable.tsx:287 +msgid "Machines" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:201 +msgid "Quick Actions" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:206 +msgid "Add a new user" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/Index.tsx:231 +msgid "Advanced Options" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:43 +msgid "Machine types" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:53 +msgid "Machine Error Stack" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx:62 +msgid "There are no machine registry errors." +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:32 +#: src/tables/settings/UserTable.tsx:119 +msgid "Info" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:36 +msgid "External plugins are not enabled for this InvenTree installation." +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:54 +msgid "Plugin Settings" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx:74 +msgid "Plugin Errors" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:17 +msgid "Page Size" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:20 +msgid "Landscape" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx:26 +msgid "Attach to Model" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:35 +msgid "Background Worker Not Running" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:36 +msgid "The background task manager service is not running. Contact your system administrator." +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:42 +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:51 +msgid "Pending Tasks" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:43 +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:59 +msgid "Scheduled Tasks" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:44 +#: src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx:67 +msgid "Failed Tasks" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:21 +msgid "Alias" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:22 +msgid "Dimensionless" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UnitManagmentPanel.tsx:66 +msgid "All units" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:32 +msgid "Select settings relevant for user lifecycle. More available in" +msgstr "" + +#: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:37 +msgid "System settings" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:68 +msgid "Login" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:94 +msgid "Barcodes" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:116 +msgid "Pricing" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:151 +msgid "Labels" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:157 +#: src/pages/Index/Settings/UserSettings.tsx:133 +msgid "Reporting" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:231 +#: src/pages/part/PartDetail.tsx:691 +msgid "Stocktake" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:237 +#: src/pages/build/BuildDetail.tsx:535 +#: src/pages/build/BuildIndex.tsx:22 +#: src/pages/part/PartDetail.tsx:625 +#: src/pages/sales/SalesOrderDetail.tsx:329 +msgid "Build Orders" +msgstr "" + +#: src/pages/Index/Settings/SystemSettings.tsx:318 +msgid "Switch to User Setting" +msgstr "" + +#: src/pages/Index/Settings/UserSettings.tsx:35 +msgid "Account" +msgstr "" + +#: src/pages/Index/Settings/UserSettings.tsx:41 +msgid "Security" +msgstr "" + +#: src/pages/Index/Settings/UserSettings.tsx:79 +msgid "Display Options" +msgstr "" + +#: src/pages/Index/Settings/UserSettings.tsx:151 +msgid "Account Settings" +msgstr "" + +#: src/pages/Index/Settings/UserSettings.tsx:159 +msgid "Switch to System Setting" +msgstr "" + +#: src/pages/Notifications.tsx:43 +msgid "Delete Notifications" +msgstr "" + +#: src/pages/Notifications.tsx:108 +msgid "Mark as unread" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:98 +#: src/pages/part/PartDetail.tsx:151 +#: src/tables/bom/BomTable.tsx:118 +#: src/tables/bom/UsedInTable.tsx:39 +#: src/tables/build/BuildLineTable.tsx:184 +#: src/tables/build/BuildOrderTable.tsx:54 +#: src/tables/sales/SalesOrderLineItemTable.tsx:66 +#: src/tables/stock/StockItemTable.tsx:53 +msgid "IPN" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:111 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:117 +#: src/pages/sales/ReturnOrderDetail.tsx:91 +#: src/pages/sales/SalesOrderDetail.tsx:97 +#: src/tables/ColumnRenderers.tsx:121 +#: src/tables/build/BuildAllocatedStockTable.tsx:90 +#: src/tables/build/BuildLineTable.tsx:195 +msgid "Reference" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:117 +#: src/pages/company/CompanyDetail.tsx:91 +#: src/pages/company/ManufacturerPartDetail.tsx:83 +#: src/pages/company/SupplierPartDetail.tsx:92 +#: src/pages/part/CategoryDetail.tsx:101 +#: src/pages/part/PartDetail.tsx:158 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:138 +#: src/pages/sales/ReturnOrderDetail.tsx:111 +#: src/pages/sales/SalesOrderDetail.tsx:117 +#: src/pages/stock/LocationDetail.tsx:103 +#: src/tables/ColumnRenderers.tsx:81 +#: src/tables/bom/UsedInTable.tsx:44 +#: src/tables/build/BuildAllocatedStockTable.tsx:70 +#: src/tables/build/BuildLineTable.tsx:189 +#: src/tables/machine/MachineTypeTable.tsx:69 +#: src/tables/machine/MachineTypeTable.tsx:112 +#: src/tables/machine/MachineTypeTable.tsx:219 +#: src/tables/machine/MachineTypeTable.tsx:323 +#: src/tables/part/RelatedPartTable.tsx:64 +#: src/tables/plugin/PluginListTable.tsx:129 +#: src/tables/plugin/PluginListTable.tsx:276 +#: src/tables/sales/SalesOrderAllocationTable.tsx:56 +#: src/tables/sales/SalesOrderLineItemTable.tsx:71 +#: src/tables/stock/LocationTypesTable.tsx:74 +msgid "Description" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:125 +msgid "Parent Build" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:136 +msgid "Build Quantity" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:144 +#: src/pages/build/BuildDetail.tsx:270 +msgid "Completed Outputs" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:161 +#: src/tables/build/BuildOrderTable.tsx:143 +msgid "Issued By" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:168 +#: src/pages/part/PartDetail.tsx:373 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:216 +#: src/pages/sales/ReturnOrderDetail.tsx:195 +#: src/pages/sales/SalesOrderDetail.tsx:204 +#: src/tables/build/BuildOrderTable.tsx:149 +#: src/tables/purchasing/PurchaseOrderTable.tsx:75 +#: src/tables/sales/ReturnOrderTable.tsx:66 +#: src/tables/sales/SalesOrderTable.tsx:73 +msgid "Responsible" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:175 +#: src/tables/settings/PendingTasksTable.tsx:32 +msgid "Created" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:182 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:209 +#: src/pages/sales/ReturnOrderDetail.tsx:188 +#: src/pages/sales/SalesOrderDetail.tsx:197 +#: src/tables/ColumnRenderers.tsx:212 +#: src/tables/part/PartPurchaseOrdersTable.tsx:99 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:110 +#: src/tables/sales/SalesOrderLineItemTable.tsx:103 +msgid "Target Date" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:189 +msgid "Completed" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:202 +msgid "Any location" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:209 +msgid "Destination Location" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:247 +msgid "Build Details" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:253 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:254 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:263 +#: src/pages/sales/ReturnOrderDetail.tsx:126 +#: src/pages/sales/ReturnOrderDetail.tsx:233 +#: src/pages/sales/ReturnOrderDetail.tsx:242 +#: src/pages/sales/SalesOrderDetail.tsx:268 +#: src/pages/sales/SalesOrderDetail.tsx:277 +msgid "Line Items" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:263 +msgid "Incomplete Outputs" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:285 +#: src/pages/sales/SalesOrderDetail.tsx:315 +msgid "Allocated Stock" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:295 +msgid "Consumed Stock" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:309 +msgid "Child Build Orders" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:319 +#: src/tables/build/BuildOutputTable.tsx:384 +#: src/tables/stock/StockItemTestResultTable.tsx:156 +msgid "Test Results" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:330 +#: src/pages/part/PartDetail.tsx:708 +msgid "Test Statistics" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:344 +#: src/pages/company/CompanyDetail.tsx:260 +#: src/pages/company/ManufacturerPartDetail.tsx:179 +#: src/pages/part/PartDetail.tsx:730 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:305 +#: src/pages/sales/ReturnOrderDetail.tsx:270 +#: src/pages/sales/SalesOrderDetail.tsx:339 +#: src/pages/stock/StockDetail.tsx:382 +msgid "Attachments" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:352 +#: src/pages/company/CompanyDetail.tsx:271 +#: src/pages/company/ManufacturerPartDetail.tsx:190 +#: src/pages/company/SupplierPartDetail.tsx:253 +#: src/pages/part/PartDetail.tsx:738 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:316 +#: src/pages/sales/ReturnOrderDetail.tsx:281 +#: src/pages/sales/SalesOrderDetail.tsx:350 +#: src/pages/stock/StockDetail.tsx:393 +#: src/tables/build/BuildOrderTestTable.tsx:143 +#: src/tables/stock/StockTrackingTable.tsx:189 +msgid "Notes" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:370 +msgid "Edit Build Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:377 +#: src/tables/build/BuildOrderTable.tsx:164 +#: src/tables/build/BuildOrderTable.tsx:179 +msgid "Add Build Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:391 +msgid "Cancel Build Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:393 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:344 +#: src/pages/sales/SalesOrderDetail.tsx:376 +msgid "Order cancelled" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:394 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:343 +#: src/pages/sales/ReturnOrderDetail.tsx:342 +#: src/pages/sales/SalesOrderDetail.tsx:375 +msgid "Cancel this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:403 +msgid "Hold Build Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:405 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:351 +#: src/pages/sales/ReturnOrderDetail.tsx:350 +#: src/pages/sales/SalesOrderDetail.tsx:383 +msgid "Place this order on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:406 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:352 +#: src/pages/sales/ReturnOrderDetail.tsx:351 +#: src/pages/sales/SalesOrderDetail.tsx:384 +msgid "Order placed on hold" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:411 +msgid "Issue Build Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:413 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:335 +#: src/pages/sales/ReturnOrderDetail.tsx:334 +#: src/pages/sales/SalesOrderDetail.tsx:367 +msgid "Issue this order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:414 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:336 +#: src/pages/sales/ReturnOrderDetail.tsx:335 +#: src/pages/sales/SalesOrderDetail.tsx:368 +msgid "Order issued" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:419 +msgid "Complete Build Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:421 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:364 +#: src/pages/sales/ReturnOrderDetail.tsx:358 +#: src/pages/sales/SalesOrderDetail.tsx:391 +msgid "Mark this order as complete" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:422 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:358 +#: src/pages/sales/ReturnOrderDetail.tsx:359 +#: src/pages/sales/SalesOrderDetail.tsx:392 +msgid "Order completed" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:453 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:387 +#: src/pages/sales/ReturnOrderDetail.tsx:388 +#: src/pages/sales/SalesOrderDetail.tsx:421 +msgid "Issue Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:460 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:394 +#: src/pages/sales/ReturnOrderDetail.tsx:395 +#: src/pages/sales/SalesOrderDetail.tsx:435 +msgid "Complete Order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:478 +msgid "Build Order Actions" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:483 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:416 +#: src/pages/sales/ReturnOrderDetail.tsx:417 +#: src/pages/sales/SalesOrderDetail.tsx:458 +msgid "Edit order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:487 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:424 +#: src/pages/sales/ReturnOrderDetail.tsx:423 +#: src/pages/sales/SalesOrderDetail.tsx:463 +msgid "Duplicate order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:491 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:427 +#: src/pages/sales/ReturnOrderDetail.tsx:428 +#: src/pages/sales/SalesOrderDetail.tsx:466 +msgid "Hold order" +msgstr "" + +#: src/pages/build/BuildDetail.tsx:496 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:432 +#: src/pages/sales/ReturnOrderDetail.tsx:433 +#: src/pages/sales/SalesOrderDetail.tsx:471 +msgid "Cancel order" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:105 +msgid "Phone Number" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:112 +msgid "Email Address" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:122 +msgid "Default Currency" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:127 +#: src/pages/company/SupplierDetail.tsx:8 +#: src/pages/company/SupplierPartDetail.tsx:116 +#: src/pages/company/SupplierPartDetail.tsx:202 +#: src/pages/company/SupplierPartDetail.tsx:332 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:132 +#: src/tables/company/CompanyTable.tsx:100 +#: src/tables/part/PartPurchaseOrdersTable.tsx:42 +#: src/tables/purchasing/PurchaseOrderTable.tsx:88 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:36 +msgid "Supplier" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:133 +#: src/pages/company/ManufacturerDetail.tsx:8 +#: src/pages/company/ManufacturerPartDetail.tsx:101 +#: src/pages/company/ManufacturerPartDetail.tsx:266 +#: src/pages/company/SupplierPartDetail.tsx:131 +#: src/tables/company/CompanyTable.tsx:105 +msgid "Manufacturer" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:139 +#: src/pages/company/CustomerDetail.tsx:8 +#: src/pages/part/pricing/SaleHistoryPanel.tsx:29 +#: src/pages/sales/ReturnOrderDetail.tsx:105 +#: src/pages/sales/SalesOrderDetail.tsx:111 +#: src/pages/stock/StockDetail.tsx:227 +#: src/tables/company/CompanyTable.tsx:110 +#: src/tables/sales/ReturnOrderTable.tsx:78 +#: src/tables/sales/SalesOrderTable.tsx:108 +#: src/tables/stock/StockTrackingTable.tsx:140 +msgid "Customer" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:173 +#: src/tables/stock/StockTrackingTable.tsx:183 +msgid "Details" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:179 +msgid "Manufactured Parts" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:188 +msgid "Supplied Parts" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:233 +msgid "Assigned Stock" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:291 +#: src/tables/company/CompanyTable.tsx:86 +msgid "Edit Company" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:299 +msgid "Delete Company" +msgstr "" + +#: src/pages/company/CompanyDetail.tsx:307 +msgid "Company Actions" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:76 +#: src/pages/company/SupplierPartDetail.tsx:85 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:128 +msgid "Internal Part" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:91 +#: src/pages/company/SupplierPartDetail.tsx:99 +msgid "External Link" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:109 +#: src/pages/company/SupplierPartDetail.tsx:140 +#: src/tables/purchasing/ManufacturerPartTable.tsx:56 +msgid "Manufacturer Part Number" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:138 +msgid "Manufacturer Details" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:147 +msgid "Manufacturer Part Details" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:153 +#: src/pages/part/PartDetail.tsx:540 +msgid "Parameters" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:165 +#: src/pages/part/PartDetail.tsx:658 +#: src/pages/purchasing/PurchasingIndex.tsx:31 +msgid "Suppliers" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:208 +#: src/tables/purchasing/ManufacturerPartTable.tsx:84 +msgid "Edit Manufacturer Part" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:215 +#: src/tables/purchasing/ManufacturerPartTable.tsx:72 +#: src/tables/purchasing/ManufacturerPartTable.tsx:103 +msgid "Add Manufacturer Part" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:227 +#: src/tables/purchasing/ManufacturerPartTable.tsx:92 +msgid "Delete Manufacturer Part" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:240 +msgid "Manufacturer Part Actions" +msgstr "" + +#: src/pages/company/ManufacturerPartDetail.tsx:280 +msgid "ManufacturerPart" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:159 +#: src/tables/part/PartPurchaseOrdersTable.tsx:71 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:156 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:197 +#: src/tables/purchasing/SupplierPartTable.tsx:131 +msgid "Pack Quantity" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:170 +msgid "Supplier Availability" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:177 +msgid "Availability Updated" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:204 +msgid "Availability" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:213 +msgid "Supplier Part Details" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:219 +#: src/pages/purchasing/PurchaseOrderDetail.tsx:292 +msgid "Received Stock" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:243 +#: src/pages/part/PartPricingPanel.tsx:111 +#: src/pages/part/pricing/PricingOverviewPanel.tsx:121 +msgid "Supplier Pricing" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:276 +msgid "Supplier Part Actions" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:300 +#: src/tables/purchasing/SupplierPartTable.tsx:210 +msgid "Edit Supplier Part" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:308 +#: src/tables/purchasing/SupplierPartTable.tsx:218 +msgid "Delete Supplier Part" +msgstr "" + +#: src/pages/company/SupplierPartDetail.tsx:316 +#: src/tables/purchasing/SupplierPartTable.tsx:163 +msgid "Add Supplier Part" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:93 +#: src/pages/stock/LocationDetail.tsx:95 +#: src/tables/settings/ErrorTable.tsx:36 +msgid "Path" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:109 +msgid "Parent Category" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:126 +msgid "Subcategories" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:133 +#: src/pages/stock/LocationDetail.tsx:135 +#: src/tables/part/PartCategoryTable.tsx:73 +#: src/tables/stock/StockLocationTable.tsx:49 +msgid "Structural" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:139 +msgid "Parent default location" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:146 +msgid "Default location" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:157 +msgid "Top level part category" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:167 +#: src/pages/part/CategoryDetail.tsx:220 +#: src/tables/part/PartCategoryTable.tsx:102 +msgid "Edit Part Category" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:180 +#: src/pages/stock/LocationDetail.tsx:227 +msgid "Delete items" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:188 +#: src/pages/part/CategoryDetail.tsx:225 +msgid "Delete Part Category" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:191 +msgid "Parts Action" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:192 +msgid "Action for parts in this category" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:197 +msgid "Child Categories Action" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:198 +msgid "Action for child categories in this category" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:216 +msgid "Category Actions" +msgstr "" + +#: src/pages/part/CategoryDetail.tsx:237 +msgid "Category Details" +msgstr "" + +#: src/pages/part/PartDetail.tsx:164 +msgid "Variant of" +msgstr "" + +#: src/pages/part/PartDetail.tsx:171 +msgid "Revision of" +msgstr "" + +#: src/pages/part/PartDetail.tsx:178 +#: src/tables/stock/StockItemTable.tsx:58 +msgid "Revision" +msgstr "" + +#: src/pages/part/PartDetail.tsx:185 +#: src/tables/notifications/NotificationsTable.tsx:31 +#: src/tables/part/PartCategoryTemplateTable.tsx:67 +msgid "Category" +msgstr "" + +#: src/pages/part/PartDetail.tsx:191 +msgid "Default Location" +msgstr "" + +#: src/pages/part/PartDetail.tsx:198 +msgid "Category Default Location" +msgstr "" + +#: src/pages/part/PartDetail.tsx:205 +#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:44 +msgid "Units" +msgstr "" + +#: src/pages/part/PartDetail.tsx:212 +#: src/tables/settings/PendingTasksTable.tsx:42 +msgid "Keywords" +msgstr "" + +#: src/pages/part/PartDetail.tsx:237 +#: src/tables/bom/BomTable.tsx:320 +#: src/tables/build/BuildLineTable.tsx:166 +#: src/tables/part/PartTable.tsx:288 +#: src/tables/sales/SalesOrderLineItemTable.tsx:107 +msgid "Available Stock" +msgstr "" + +#: src/pages/part/PartDetail.tsx:244 +msgid "Variant Stock" +msgstr "" + +#: src/pages/part/PartDetail.tsx:252 +msgid "Minimum Stock" +msgstr "" + +#: src/pages/part/PartDetail.tsx:258 +#: src/tables/bom/BomTable.tsx:237 +#: src/tables/build/BuildLineTable.tsx:128 +#: src/tables/sales/SalesOrderLineItemTable.tsx:145 +msgid "On order" +msgstr "" + +#: src/pages/part/PartDetail.tsx:265 +msgid "Required for Orders" +msgstr "" + +#: src/pages/part/PartDetail.tsx:274 +msgid "Allocated to Build Orders" +msgstr "" + +#: src/pages/part/PartDetail.tsx:282 +msgid "Allocated to Sales Orders" +msgstr "" + +#: src/pages/part/PartDetail.tsx:289 +#: src/tables/bom/BomTable.tsx:261 +#: src/tables/bom/BomTable.tsx:293 +msgid "Can Build" +msgstr "" + +#: src/pages/part/PartDetail.tsx:296 +#: src/pages/part/PartDetail.tsx:885 +#: src/pages/stock/StockDetail.tsx:560 +#: src/tables/build/BuildOrderTestTable.tsx:220 +#: src/tables/stock/StockItemTable.tsx:330 +msgid "In Production" +msgstr "" + +#: src/pages/part/PartDetail.tsx:310 +#: src/pages/part/PartDetail.tsx:891 +#: src/tables/part/ParametricPartTable.tsx:228 +#: src/tables/part/PartTable.tsx:184 +msgid "Locked" +msgstr "" + +#: src/pages/part/PartDetail.tsx:316 +msgid "Template Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:321 +#: src/tables/bom/BomTable.tsx:315 +msgid "Assembled Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:326 +msgid "Component Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:331 +#: src/tables/bom/BomTable.tsx:305 +msgid "Testable Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:337 +#: src/tables/bom/BomTable.tsx:310 +msgid "Trackable Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:342 +msgid "Purchaseable Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:347 +msgid "Saleable Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:352 +msgid "Virtual Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:360 +#: src/tables/ColumnRenderers.tsx:220 +msgid "Creation Date" +msgstr "" + +#: src/pages/part/PartDetail.tsx:365 +msgid "Created By" +msgstr "" + +#: src/pages/part/PartDetail.tsx:380 +msgid "Default Supplier" +msgstr "" + +#: src/pages/part/PartDetail.tsx:391 +#: src/pages/part/pricing/BomPricingPanel.tsx:79 +#: src/pages/part/pricing/VariantPricingPanel.tsx:95 +#: src/tables/part/PartTable.tsx:161 +msgid "Price Range" +msgstr "" + +#: src/pages/part/PartDetail.tsx:431 +#: src/pages/stock/StockDetail.tsx:132 +msgid "Last Stocktake" +msgstr "" + +#: src/pages/part/PartDetail.tsx:470 +msgid "Stocktake By" +msgstr "" + +#: src/pages/part/PartDetail.tsx:534 +msgid "Part Details" +msgstr "" + +#: src/pages/part/PartDetail.tsx:565 +msgid "Variants" +msgstr "" + +#: src/pages/part/PartDetail.tsx:572 +#: src/pages/stock/StockDetail.tsx:304 +msgid "Allocations" +msgstr "" + +#: src/pages/part/PartDetail.tsx:583 +#: src/pages/stock/StockDetail.tsx:315 +#: src/tables/part/PartTable.tsx:99 +msgid "Build Order Allocations" +msgstr "" + +#: src/pages/part/PartDetail.tsx:599 +#: src/pages/stock/StockDetail.tsx:330 +#: src/tables/part/PartTable.tsx:108 +msgid "Sales Order Allocations" +msgstr "" + +#: src/pages/part/PartDetail.tsx:616 +msgid "Bill of Materials" +msgstr "" + +#: src/pages/part/PartDetail.tsx:632 +msgid "Used In" +msgstr "" + +#: src/pages/part/PartDetail.tsx:639 +msgid "Part Pricing" +msgstr "" + +#: src/pages/part/PartDetail.tsx:645 +#: src/pages/purchasing/PurchasingIndex.tsx:42 +msgid "Manufacturers" +msgstr "" + +#: src/pages/part/PartDetail.tsx:685 +msgid "Scheduling" +msgstr "" + +#: src/pages/part/PartDetail.tsx:697 +msgid "Test Templates" +msgstr "" + +#: src/pages/part/PartDetail.tsx:724 +msgid "Related Parts" +msgstr "" + +#: src/pages/part/PartDetail.tsx:861 +#: src/pages/stock/StockDetail.tsx:153 +#: src/pages/stock/StockDetail.tsx:577 +#: src/tables/build/BuildLineTable.tsx:59 +#: src/tables/part/PartTable.tsx:117 +#: src/tables/stock/StockItemTable.tsx:177 +#: src/tables/stock/StockItemTable.tsx:310 +msgid "Available" +msgstr "" + +#: src/pages/part/PartDetail.tsx:867 +msgid "No Stock" +msgstr "" + +#: src/pages/part/PartDetail.tsx:873 +#: src/tables/part/PartTestTemplateTable.tsx:106 +#: src/tables/stock/StockItemTestResultTable.tsx:383 +msgid "Required" +msgstr "" + +#: src/pages/part/PartDetail.tsx:879 +#: src/tables/bom/BomTable.tsx:325 +#: src/tables/part/PartTable.tsx:86 +msgid "On Order" +msgstr "" + +#: src/pages/part/PartDetail.tsx:910 +msgid "Edit Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:945 +#: src/tables/part/PartTable.tsx:331 +#: src/tables/part/PartTable.tsx:342 +msgid "Add Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:959 +msgid "Delete Part" +msgstr "" + +#: src/pages/part/PartDetail.tsx:968 +msgid "Deleting this part cannot be reversed" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1007 +#: src/pages/stock/LocationDetail.tsx:310 +#: src/tables/stock/StockItemTable.tsx:444 +msgid "Stock Actions" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1015 +msgid "Count part stock" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1026 +msgid "Transfer part stock" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1035 +msgid "Part Actions" +msgstr "" + +#: src/pages/part/PartDetail.tsx:1094 +msgid "Select Part Revision" +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:68 +msgid "No pricing data found for this part." +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:82 +#: src/pages/part/pricing/PricingOverviewPanel.tsx:190 +msgid "Pricing Overview" +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:88 +msgid "Purchase History" +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:102 +#: src/pages/part/pricing/PricingOverviewPanel.tsx:100 +msgid "Internal Pricing" +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:120 +#: src/pages/part/pricing/PricingOverviewPanel.tsx:107 +msgid "BOM Pricing" +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:127 +#: src/pages/part/pricing/PricingOverviewPanel.tsx:128 +msgid "Variant Pricing" +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:139 +#: src/pages/part/pricing/PricingOverviewPanel.tsx:135 +msgid "Sale Pricing" +msgstr "" + +#: src/pages/part/PartPricingPanel.tsx:146 +#: src/pages/part/pricing/PricingOverviewPanel.tsx:142 +msgid "Sale History" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:58 +#: src/pages/part/pricing/BomPricingPanel.tsx:138 +#: src/tables/ColumnRenderers.tsx:262 +#: src/tables/bom/BomTable.tsx:185 +#: src/tables/general/ExtraLineItemTable.tsx:64 +#: src/tables/purchasing/PurchaseOrderTable.tsx:112 +#: src/tables/sales/ReturnOrderTable.tsx:104 +#: src/tables/sales/SalesOrderLineItemTable.tsx:93 +#: src/tables/sales/SalesOrderTable.tsx:136 +msgid "Total Price" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:78 +#: src/pages/part/pricing/BomPricingPanel.tsx:102 +#: src/tables/bom/UsedInTable.tsx:49 +#: src/tables/part/PartTable.tsx:202 +msgid "Component" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:81 +#: src/pages/part/pricing/VariantPricingPanel.tsx:37 +#: src/pages/part/pricing/VariantPricingPanel.tsx:97 +msgid "Minimum Price" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:82 +#: src/pages/part/pricing/VariantPricingPanel.tsx:45 +#: src/pages/part/pricing/VariantPricingPanel.tsx:98 +msgid "Maximum Price" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:129 +#: src/pages/part/pricing/PriceBreakPanel.tsx:172 +#: src/pages/part/pricing/PurchaseHistoryPanel.tsx:67 +#: src/pages/part/pricing/PurchaseHistoryPanel.tsx:128 +#: src/pages/part/pricing/SupplierPricingPanel.tsx:62 +#: src/tables/bom/BomTable.tsx:176 +#: src/tables/general/ExtraLineItemTable.tsx:56 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 +msgid "Unit Price" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:154 +#: src/pages/part/pricing/VariantPricingPanel.tsx:53 +#: src/tables/purchasing/SupplierPartTable.tsx:148 +msgid "Updated" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:219 +msgid "Pie Chart" +msgstr "" + +#: src/pages/part/pricing/BomPricingPanel.tsx:220 +msgid "Bar Chart" +msgstr "" + +#: src/pages/part/pricing/PriceBreakPanel.tsx:58 +#: src/pages/part/pricing/PriceBreakPanel.tsx:110 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:142 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:168 +msgid "Add Price Break" +msgstr "" + +#: src/pages/part/pricing/PriceBreakPanel.tsx:71 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:153 +msgid "Edit Price Break" +msgstr "" + +#: src/pages/part/pricing/PriceBreakPanel.tsx:81 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:161 +msgid "Delete Price Break" +msgstr "" + +#: src/pages/part/pricing/PriceBreakPanel.tsx:95 +msgid "Price Break" +msgstr "" + +#: src/pages/part/pricing/PriceBreakPanel.tsx:170 +msgid "Price" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:51 +msgid "Pricing Category" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:70 +msgid "Minimum" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:82 +msgid "Maximum" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:114 +msgid "Purchase Pricing" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:149 +msgid "Override Pricing" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:156 +msgid "Overall Pricing" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:175 +#: src/pages/stock/StockDetail.tsx:126 +#: src/tables/stock/StockItemTable.tsx:240 +msgid "Last Updated" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:192 +msgid "Minimum Value" +msgstr "" + +#: src/pages/part/pricing/PricingOverviewPanel.tsx:193 +msgid "Maximum Value" +msgstr "" + +#: src/pages/part/pricing/PricingPanel.tsx:24 +msgid "No data available" +msgstr "" + +#: src/pages/part/pricing/PricingPanel.tsx:65 +msgid "No Data" +msgstr "" + +#: src/pages/part/pricing/PricingPanel.tsx:66 +msgid "No pricing data available" +msgstr "" + +#: src/pages/part/pricing/PricingPanel.tsx:77 +msgid "Loading pricing data" +msgstr "" + +#: src/pages/part/pricing/PurchaseHistoryPanel.tsx:40 +#: src/pages/part/pricing/SaleHistoryPanel.tsx:36 +#: src/tables/ColumnRenderers.tsx:201 +#: src/tables/build/BuildOrderTestTable.tsx:151 +#: src/tables/plugin/PluginListTable.tsx:139 +msgid "Date" +msgstr "" + +#: src/pages/part/pricing/PurchaseHistoryPanel.tsx:47 +msgid "Purchase Price" +msgstr "" + +#: src/pages/part/pricing/SaleHistoryPanel.tsx:22 +msgid "Sale Order" +msgstr "" + +#: src/pages/part/pricing/SaleHistoryPanel.tsx:42 +#: src/pages/part/pricing/SaleHistoryPanel.tsx:92 +msgid "Sale Price" +msgstr "" + +#: src/pages/part/pricing/SupplierPricingPanel.tsx:65 +#: src/tables/purchasing/SupplierPriceBreakTable.tsx:83 +msgid "Supplier Price" +msgstr "" + +#: src/pages/part/pricing/VariantPricingPanel.tsx:30 +#: src/pages/part/pricing/VariantPricingPanel.tsx:94 +msgid "Variant Part" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:89 +msgid "Edit Purchase Order" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:98 +#: src/tables/purchasing/PurchaseOrderTable.tsx:128 +#: src/tables/purchasing/PurchaseOrderTable.tsx:140 +msgid "Add Purchase Order" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:123 +msgid "Supplier Reference" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:154 +#: src/pages/sales/ReturnOrderDetail.tsx:133 +#: src/pages/sales/SalesOrderDetail.tsx:133 +msgid "Completed Line Items" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:161 +#: src/pages/sales/ReturnOrderDetail.tsx:140 +#: src/pages/sales/SalesOrderDetail.tsx:149 +msgid "Order Currency" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:168 +#: src/pages/sales/ReturnOrderDetail.tsx:147 +#: src/pages/sales/SalesOrderDetail.tsx:156 +msgid "Total Cost" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:203 +#: src/pages/sales/ReturnOrderDetail.tsx:182 +#: src/pages/sales/SalesOrderDetail.tsx:191 +msgid "Created On" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:248 +#: src/pages/sales/ReturnOrderDetail.tsx:227 +#: src/pages/sales/SalesOrderDetail.tsx:262 +msgid "Order Details" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:276 +#: src/pages/sales/ReturnOrderDetail.tsx:254 +#: src/pages/sales/SalesOrderDetail.tsx:293 +msgid "Extra Line Items" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:333 +msgid "Issue Purchase Order" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:341 +msgid "Cancel Purchase Order" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:349 +msgid "Hold Purchase Order" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:357 +msgid "Complete Purchase Order" +msgstr "" + +#: src/pages/purchasing/PurchaseOrderDetail.tsx:412 +#: src/pages/sales/ReturnOrderDetail.tsx:413 +#: src/pages/sales/SalesOrderDetail.tsx:453 +msgid "Order Actions" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:97 +#: src/pages/sales/SalesOrderDetail.tsx:103 +#: src/tables/sales/SalesOrderTable.tsx:124 +msgid "Customer Reference" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:311 +msgid "Edit Return Order" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:320 +#: src/tables/sales/ReturnOrderTable.tsx:119 +#: src/tables/sales/ReturnOrderTable.tsx:128 +msgid "Add Return Order" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:332 +msgid "Issue Return Order" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:340 +msgid "Cancel Return Order" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:343 +msgid "Order canceled" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:348 +msgid "Hold Return Order" +msgstr "" + +#: src/pages/sales/ReturnOrderDetail.tsx:356 +msgid "Complete Return Order" +msgstr "" + +#: src/pages/sales/SalesIndex.tsx:38 +msgid "Customers" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:141 +msgid "Completed Shipments" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:239 +msgid "Edit Sales Order" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:248 +#: src/tables/sales/SalesOrderTable.tsx:84 +#: src/tables/sales/SalesOrderTable.tsx:96 +msgid "Add Sales Order" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:309 +msgid "Shipments" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:365 +msgid "Issue Sales Order" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:373 +msgid "Cancel Sales Order" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:381 +msgid "Hold Sales Order" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:389 +msgid "Complete Sales Order" +msgstr "" + +#: src/pages/sales/SalesOrderDetail.tsx:428 +msgid "Ship Order" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:111 +msgid "Parent Location" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:129 +msgid "Sublocations" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:141 +#: src/tables/stock/StockLocationTable.tsx:54 +msgid "External" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:147 +#: src/tables/stock/StockLocationTable.tsx:63 +msgid "Location Type" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:158 +msgid "Top level stock location" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:169 +msgid "Location Details" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:195 +msgid "Default Parts" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:214 +#: src/pages/stock/LocationDetail.tsx:336 +#: src/tables/stock/StockLocationTable.tsx:123 +msgid "Edit Stock Location" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:235 +#: src/pages/stock/LocationDetail.tsx:341 +msgid "Delete Stock Location" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:238 +msgid "Items Action" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:239 +msgid "Action for stock items in this location" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:244 +msgid "Child Locations Action" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:245 +msgid "Action for child locations in this location" +msgstr "" + +#: src/pages/stock/LocationDetail.tsx:332 +msgid "Location Actions" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:105 +msgid "Base Part" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:185 +msgid "Installed In" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:201 +msgid "Consumed By" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:210 +#: src/tables/build/BuildAllocatedStockTable.tsx:64 +#: src/tables/stock/StockTrackingTable.tsx:96 +msgid "Build Order" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:288 +msgid "Stock Details" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:294 +msgid "Stock Tracking" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:347 +msgid "Test Data" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:361 +msgid "Installed Items" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:368 +msgid "Child Items" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:422 +msgid "Edit Stock Item" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:449 +msgid "Delete Stock Item" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:489 +msgid "Stock Operations" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:494 +msgid "Count stock" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:504 +#: src/tables/stock/StockItemTable.tsx:449 +msgid "Add stock" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:512 +#: src/tables/stock/StockItemTable.tsx:458 +msgid "Remove stock" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:519 +msgid "Transfer" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:520 +#: src/tables/stock/StockItemTable.tsx:478 +msgid "Transfer stock" +msgstr "" + +#: src/pages/stock/StockDetail.tsx:531 +msgid "Stock Item Actions" +msgstr "" + +#: src/tables/ColumnRenderers.tsx:30 +msgid "Part is not active" +msgstr "" + +#: src/tables/ColumnRenderers.tsx:35 +msgid "Part is locked" +msgstr "" + +#: src/tables/ColumnRenderers.tsx:57 +msgid "No location set" +msgstr "" + +#: src/tables/ColumnRenderers.tsx:228 +#: src/tables/sales/SalesOrderShipmentTable.tsx:79 +msgid "Shipment Date" +msgstr "" + +#: src/tables/ColumnSelect.tsx:16 +#: src/tables/ColumnSelect.tsx:23 +msgid "Select Columns" +msgstr "" + +#: src/tables/DownloadAction.tsx:21 +msgid "CSV" +msgstr "" + +#: src/tables/DownloadAction.tsx:22 +msgid "TSV" +msgstr "" + +#: src/tables/DownloadAction.tsx:23 +msgid "Excel (.xlsx)" +msgstr "" + +#: src/tables/DownloadAction.tsx:36 +msgid "Download Data" +msgstr "" + +#: src/tables/Filter.tsx:89 +#: src/tables/build/BuildOrderTable.tsx:127 +msgid "Assigned to me" +msgstr "" + +#: src/tables/Filter.tsx:90 +#: src/tables/build/BuildOrderTable.tsx:128 +msgid "Show orders assigned to me" +msgstr "" + +#: src/tables/Filter.tsx:97 +msgid "Outstanding" +msgstr "" + +#: src/tables/Filter.tsx:98 +msgid "Show outstanding orders" +msgstr "" + +#: src/tables/Filter.tsx:105 +#: src/tables/build/BuildOrderTable.tsx:120 +msgid "Overdue" +msgstr "" + +#: src/tables/Filter.tsx:106 +msgid "Show overdue orders" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:51 +msgid "Remove filter" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:135 +msgid "Select filter" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:136 +msgid "Filter" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:143 +#: src/tables/build/BuildOrderTestTable.tsx:135 +#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:38 +#: src/tables/stock/StockItemTestResultTable.tsx:192 +msgid "Value" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:145 +msgid "Select filter value" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:188 +msgid "Table Filters" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:220 +msgid "Add Filter" +msgstr "" + +#: src/tables/FilterSelectDrawer.tsx:229 +msgid "Clear Filters" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:122 +#: src/tables/InvenTreeTable.tsx:432 +#: src/tables/InvenTreeTable.tsx:456 +msgid "No records found" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:467 +msgid "Server returned incorrect data type" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:475 +msgid "Bad request" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:478 +msgid "Unauthorized" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:481 +msgid "Forbidden" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:484 +msgid "Not found" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:531 +msgid "Delete Selected Items" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:535 +msgid "Are you sure you want to delete the selected items?" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:537 +msgid "This action cannot be undone!" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:640 +#: src/tables/InvenTreeTable.tsx:641 +msgid "Barcode actions" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:650 +msgid "Delete selected records" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:671 +msgid "Refresh data" +msgstr "" + +#: src/tables/InvenTreeTable.tsx:697 +msgid "Table filters" +msgstr "" + +#: src/tables/bom/BomTable.tsx:95 +msgid "This BOM item is defined for a different parent" +msgstr "" + +#: src/tables/bom/BomTable.tsx:110 +msgid "Part Information" +msgstr "" + +#: src/tables/bom/BomTable.tsx:212 +#: src/tables/build/BuildLineTable.tsx:137 +#: src/tables/part/PartTable.tsx:125 +msgid "External stock" +msgstr "" + +#: src/tables/bom/BomTable.tsx:220 +#: src/tables/build/BuildLineTable.tsx:100 +msgid "Includes substitute stock" +msgstr "" + +#: src/tables/bom/BomTable.tsx:229 +#: src/tables/build/BuildLineTable.tsx:110 +#: src/tables/sales/SalesOrderLineItemTable.tsx:131 +msgid "Includes variant stock" +msgstr "" + +#: src/tables/bom/BomTable.tsx:245 +#: src/tables/part/PartTable.tsx:92 +msgid "Building" +msgstr "" + +#: src/tables/bom/BomTable.tsx:254 +#: src/tables/part/PartTable.tsx:153 +#: src/tables/sales/SalesOrderLineItemTable.tsx:154 +#: src/tables/stock/StockItemTable.tsx:216 +msgid "Stock Information" +msgstr "" + +#: src/tables/bom/BomTable.tsx:285 +#: src/tables/build/BuildLineTable.tsx:260 +msgid "Consumable item" +msgstr "" + +#: src/tables/bom/BomTable.tsx:288 +msgid "No available stock" +msgstr "" + +#: src/tables/bom/BomTable.tsx:306 +#: src/tables/build/BuildLineTable.tsx:80 +msgid "Show testable items" +msgstr "" + +#: src/tables/bom/BomTable.tsx:311 +msgid "Show trackable items" +msgstr "" + +#: src/tables/bom/BomTable.tsx:316 +#: src/tables/build/BuildLineTable.tsx:75 +msgid "Show assembled items" +msgstr "" + +#: src/tables/bom/BomTable.tsx:321 +msgid "Show items with available stock" +msgstr "" + +#: src/tables/bom/BomTable.tsx:326 +msgid "Show items on order" +msgstr "" + +#: src/tables/bom/BomTable.tsx:330 +msgid "Validated" +msgstr "" + +#: src/tables/bom/BomTable.tsx:331 +msgid "Show validated items" +msgstr "" + +#: src/tables/bom/BomTable.tsx:335 +#: src/tables/bom/UsedInTable.tsx:74 +msgid "Inherited" +msgstr "" + +#: src/tables/bom/BomTable.tsx:336 +#: src/tables/bom/UsedInTable.tsx:75 +msgid "Show inherited items" +msgstr "" + +#: src/tables/bom/BomTable.tsx:340 +msgid "Allow Variants" +msgstr "" + +#: src/tables/bom/BomTable.tsx:341 +msgid "Show items which allow variant substitution" +msgstr "" + +#: src/tables/bom/BomTable.tsx:345 +#: src/tables/bom/UsedInTable.tsx:79 +#: src/tables/build/BuildLineTable.tsx:69 +msgid "Optional" +msgstr "" + +#: src/tables/bom/BomTable.tsx:346 +#: src/tables/bom/UsedInTable.tsx:80 +msgid "Show optional items" +msgstr "" + +#: src/tables/bom/BomTable.tsx:350 +#: src/tables/build/BuildLineTable.tsx:64 +msgid "Consumable" +msgstr "" + +#: src/tables/bom/BomTable.tsx:351 +msgid "Show consumable items" +msgstr "" + +#: src/tables/bom/BomTable.tsx:355 +#: src/tables/part/PartTable.tsx:282 +msgid "Has Pricing" +msgstr "" + +#: src/tables/bom/BomTable.tsx:356 +msgid "Show items with pricing" +msgstr "" + +#: src/tables/bom/BomTable.tsx:378 +#: src/tables/bom/BomTable.tsx:511 +msgid "Import BOM Data" +msgstr "" + +#: src/tables/bom/BomTable.tsx:388 +#: src/tables/bom/BomTable.tsx:523 +msgid "Add BOM Item" +msgstr "" + +#: src/tables/bom/BomTable.tsx:393 +msgid "BOM item created" +msgstr "" + +#: src/tables/bom/BomTable.tsx:400 +msgid "Edit BOM Item" +msgstr "" + +#: src/tables/bom/BomTable.tsx:402 +msgid "BOM item updated" +msgstr "" + +#: src/tables/bom/BomTable.tsx:409 +msgid "Delete BOM Item" +msgstr "" + +#: src/tables/bom/BomTable.tsx:410 +msgid "BOM item deleted" +msgstr "" + +#: src/tables/bom/BomTable.tsx:423 +#: src/tables/bom/BomTable.tsx:426 +#: src/tables/bom/BomTable.tsx:517 +msgid "Validate BOM" +msgstr "" + +#: src/tables/bom/BomTable.tsx:427 +msgid "Do you want to validate the bill of materials for this assembly?" +msgstr "" + +#: src/tables/bom/BomTable.tsx:430 +msgid "BOM validated" +msgstr "" + +#: src/tables/bom/BomTable.tsx:442 +msgid "BOM item validated" +msgstr "" + +#: src/tables/bom/BomTable.tsx:451 +msgid "Failed to validate BOM item" +msgstr "" + +#: src/tables/bom/BomTable.tsx:463 +msgid "View BOM" +msgstr "" + +#: src/tables/bom/BomTable.tsx:472 +msgid "Validate BOM Line" +msgstr "" + +#: src/tables/bom/BomTable.tsx:489 +msgid "Edit Substitutes" +msgstr "" + +#: src/tables/bom/BomTable.tsx:539 +#: src/tables/part/PartParameterTable.tsx:193 +#: src/tables/part/PartTestTemplateTable.tsx:252 +msgid "Part is Locked" +msgstr "" + +#: src/tables/bom/BomTable.tsx:544 +msgid "Bill of materials cannot be edited, as the part is locked" +msgstr "" + +#: src/tables/bom/UsedInTable.tsx:33 +#: src/tables/build/BuildLineTable.tsx:74 +#: src/tables/part/ParametricPartTable.tsx:233 +#: src/tables/part/PartTable.tsx:190 +#: src/tables/stock/StockItemTable.tsx:300 +msgid "Assembly" +msgstr "" + +#: src/tables/bom/UsedInTable.tsx:85 +msgid "Show active assemblies" +msgstr "" + +#: src/tables/bom/UsedInTable.tsx:89 +#: src/tables/part/PartTable.tsx:214 +#: src/tables/part/PartVariantTable.tsx:30 +msgid "Trackable" +msgstr "" + +#: src/tables/bom/UsedInTable.tsx:90 +msgid "Show trackable assemblies" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:54 +msgid "Allocated to Output" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:55 +msgid "Show items allocated to a build output" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:76 +#: src/tables/part/PartPurchaseOrdersTable.tsx:125 +#: src/tables/sales/SalesOrderAllocationTable.tsx:62 +msgid "Order Status" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:96 +#: src/tables/sales/SalesOrderAllocationTable.tsx:75 +msgid "Allocated Quantity" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:116 +#: src/tables/sales/SalesOrderAllocationTable.tsx:94 +msgid "Available Quantity" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:126 +#: src/tables/build/BuildOrderTestTable.tsx:177 +#: src/tables/build/BuildOrderTestTable.tsx:201 +#: src/tables/build/BuildOutputTable.tsx:312 +msgid "Build Output" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:143 +msgid "Edit Build Item" +msgstr "" + +#: src/tables/build/BuildAllocatedStockTable.tsx:153 +msgid "Delete Build Item" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:55 +msgid "Show allocated lines" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:60 +msgid "Show lines with available stock" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:65 +msgid "Show consumable lines" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:70 +msgid "Show optional lines" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:79 +#: src/tables/part/PartTable.tsx:208 +msgid "Testable" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:84 +#: src/tables/stock/StockItemTable.tsx:364 +msgid "Tracked" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:85 +msgid "Show tracked lines" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:119 +#: src/tables/sales/SalesOrderLineItemTable.tsx:137 +msgid "In production" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:147 +msgid "Insufficient stock" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:163 +#: src/tables/sales/SalesOrderLineItemTable.tsx:125 +#: src/tables/stock/StockItemTable.tsx:186 +msgid "No stock available" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:212 +msgid "Gets Inherited" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:221 +msgid "Unit Quantity" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:283 +#: src/tables/sales/SalesOrderLineItemTable.tsx:247 +msgid "Create Build Order" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:311 +msgid "Auto allocation in progress" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:314 +#: src/tables/build/BuildLineTable.tsx:445 +msgid "Auto Allocate Stock" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:315 +msgid "Automatically allocate stock to this build according to the selected options" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:333 +#: src/tables/build/BuildLineTable.tsx:347 +#: src/tables/build/BuildLineTable.tsx:404 +#: src/tables/build/BuildLineTable.tsx:472 +msgid "Deallocate Stock" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:349 +msgid "Deallocate all untracked stock for this build order" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:351 +msgid "Deallocate stock from the selected line item" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:355 +msgid "Stock has been deallocated" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:414 +msgid "Order Stock" +msgstr "" + +#: src/tables/build/BuildLineTable.tsx:421 +msgid "Build Stock" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:110 +msgid "Show active orders" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:115 +#: src/tables/part/PartPurchaseOrdersTable.tsx:126 +#: src/tables/purchasing/PurchaseOrderTable.tsx:56 +#: src/tables/sales/ReturnOrderTable.tsx:47 +#: src/tables/sales/SalesOrderTable.tsx:54 +msgid "Filter by order status" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:122 +msgid "Show overdue status" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:133 +#: src/tables/purchasing/PurchaseOrderTable.tsx:65 +#: src/tables/sales/ReturnOrderTable.tsx:56 +#: src/tables/sales/SalesOrderTable.tsx:63 +msgid "Filter by project code" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:138 +#: src/tables/purchasing/PurchaseOrderTable.tsx:70 +#: src/tables/sales/ReturnOrderTable.tsx:61 +#: src/tables/sales/SalesOrderTable.tsx:68 +msgid "Has Project Code" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:139 +#: src/tables/purchasing/PurchaseOrderTable.tsx:71 +#: src/tables/sales/ReturnOrderTable.tsx:62 +#: src/tables/sales/SalesOrderTable.tsx:69 +msgid "Filter by whether the purchase order has a project code" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:144 +msgid "Filter by user who issued this order" +msgstr "" + +#: src/tables/build/BuildOrderTable.tsx:150 +#: src/tables/purchasing/PurchaseOrderTable.tsx:76 +#: src/tables/sales/ReturnOrderTable.tsx:67 +#: src/tables/sales/SalesOrderTable.tsx:74 +msgid "Filter by responsible owner" +msgstr "" + +#: src/tables/build/BuildOrderTestTable.tsx:76 +#: src/tables/build/BuildOrderTestTable.tsx:112 +#: src/tables/stock/StockItemTestResultTable.tsx:275 +#: src/tables/stock/StockItemTestResultTable.tsx:347 +#: src/tables/stock/StockItemTestResultTable.tsx:402 +msgid "Add Test Result" +msgstr "" + +#: src/tables/build/BuildOrderTestTable.tsx:83 +#: src/tables/stock/StockItemTestResultTable.tsx:277 +msgid "Test result added" +msgstr "" + +#: src/tables/build/BuildOrderTestTable.tsx:111 +#: src/tables/stock/StockItemTestResultTable.tsx:180 +msgid "No Result" +msgstr "" + +#: src/tables/build/BuildOrderTestTable.tsx:221 +msgid "Show build outputs currently in production" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:173 +#: src/tables/build/BuildOutputTable.tsx:211 +msgid "Add Build Output" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:216 +msgid "Complete selected outputs" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:226 +msgid "Scrap selected outputs" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:236 +msgid "Cancel selected outputs" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:252 +msgid "Allocate" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:253 +msgid "Allocate stock to build output" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:259 +msgid "Deallocate" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:260 +msgid "Deallocate stock from build output" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:267 +msgid "Complete build output" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:276 +msgid "Scrap" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:277 +msgid "Scrap build output" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:287 +msgid "Cancel build output" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:325 +msgid "Batch" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:340 +msgid "Allocated Lines" +msgstr "" + +#: src/tables/build/BuildOutputTable.tsx:355 +msgid "Required Tests" +msgstr "" + +#: src/tables/company/AddressTable.tsx:118 +#: src/tables/company/AddressTable.tsx:182 +msgid "Add Address" +msgstr "" + +#: src/tables/company/AddressTable.tsx:123 +msgid "Address created" +msgstr "" + +#: src/tables/company/AddressTable.tsx:132 +msgid "Edit Address" +msgstr "" + +#: src/tables/company/AddressTable.tsx:140 +msgid "Delete Address" +msgstr "" + +#: src/tables/company/AddressTable.tsx:141 +msgid "Are you sure you want to delete this address?" +msgstr "" + +#: src/tables/company/CompanyTable.tsx:74 +#: src/tables/company/CompanyTable.tsx:123 +msgid "Add Company" +msgstr "" + +#: src/tables/company/CompanyTable.tsx:96 +msgid "Show active companies" +msgstr "" + +#: src/tables/company/CompanyTable.tsx:101 +msgid "Show companies which are suppliers" +msgstr "" + +#: src/tables/company/CompanyTable.tsx:106 +msgid "Show companies which are manufacturers" +msgstr "" + +#: src/tables/company/CompanyTable.tsx:111 +msgid "Show companies which are customers" +msgstr "" + +#: src/tables/company/ContactTable.tsx:71 +msgid "Edit Contact" +msgstr "" + +#: src/tables/company/ContactTable.tsx:78 +msgid "Add Contact" +msgstr "" + +#: src/tables/company/ContactTable.tsx:89 +msgid "Delete Contact" +msgstr "" + +#: src/tables/company/ContactTable.tsx:129 +msgid "Add contact" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:135 +msgid "File uploaded" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:136 +msgid "File {0} uploaded successfully" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:147 +msgid "Upload Error" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:148 +msgid "File could not be uploaded" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:196 +msgid "Upload Attachment" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:206 +msgid "Edit Attachment" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:220 +msgid "Delete Attachment" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:230 +msgid "Is Link" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:231 +msgid "Show link attachments" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:235 +msgid "Is File" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:236 +msgid "Show file attachments" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:245 +msgid "Add attachment" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:256 +msgid "Add external link" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:304 +msgid "No attachments found" +msgstr "" + +#: src/tables/general/AttachmentTable.tsx:343 +msgid "Drag attachment file here to upload" +msgstr "" + +#: src/tables/general/ExtraLineItemTable.tsx:86 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:60 +#: src/tables/sales/SalesOrderLineItemTable.tsx:200 +msgid "Add Line Item" +msgstr "" + +#: src/tables/general/ExtraLineItemTable.tsx:98 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:269 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 +#: src/tables/sales/SalesOrderLineItemTable.tsx:218 +msgid "Edit Line Item" +msgstr "" + +#: src/tables/general/ExtraLineItemTable.tsx:106 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:277 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:80 +#: src/tables/sales/SalesOrderLineItemTable.tsx:226 +msgid "Delete Line Item" +msgstr "" + +#: src/tables/general/ExtraLineItemTable.tsx:142 +msgid "Add Extra Line Item" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:202 +msgid "Machine restarted" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:212 +#: src/tables/machine/MachineListTable.tsx:262 +msgid "Edit machine" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:226 +#: src/tables/machine/MachineListTable.tsx:266 +msgid "Delete machine" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:227 +msgid "Machine successfully deleted." +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:231 +msgid "Are you sure you want to remove the machine \"{0}\"?" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:255 +#: src/tables/machine/MachineListTable.tsx:431 +msgid "Restart required" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:259 +msgid "Machine Actions" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:271 +msgid "Restart" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:273 +msgid "Restart machine" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:275 +msgid "manual restart required" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:291 +msgid "Machine information" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:302 +#: src/tables/machine/MachineListTable.tsx:598 +msgid "Machine Type" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:315 +msgid "Machine Driver" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:328 +msgid "Initialized" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:349 +#: src/tables/machine/MachineTypeTable.tsx:261 +msgid "Errors" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:357 +#: src/tables/machine/MachineTypeTable.tsx:269 +msgid "No errors reported" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:377 +msgid "Machine Settings" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:388 +msgid "Driver Settings" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:505 +msgid "Add machine" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:560 +msgid "Machine detail" +msgstr "" + +#: src/tables/machine/MachineListTable.tsx:607 +msgid "Driver" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:73 +msgid "Builtin driver" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:89 +msgid "Machine type not found." +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:97 +msgid "Machine type information" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:110 +#: src/tables/machine/MachineTypeTable.tsx:217 +msgid "Slug" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:118 +#: src/tables/machine/MachineTypeTable.tsx:238 +msgid "Provider plugin" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:130 +#: src/tables/machine/MachineTypeTable.tsx:250 +msgid "Provider file" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:135 +#: src/tables/machine/MachineTypeTable.tsx:255 +#: src/tables/plugin/PluginListTable.tsx:180 +#: src/tables/plugin/PluginListTable.tsx:566 +msgid "Builtin" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:146 +msgid "Available drivers" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:196 +msgid "Machine driver not found." +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:204 +msgid "Machine driver information" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:224 +msgid "Machine type" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:327 +msgid "Builtin type" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:336 +msgid "Machine type detail" +msgstr "" + +#: src/tables/machine/MachineTypeTable.tsx:346 +msgid "Machine driver detail" +msgstr "" + +#: src/tables/notifications/NotificationsTable.tsx:26 +msgid "Age" +msgstr "" + +#: src/tables/notifications/NotificationsTable.tsx:40 +#: src/tables/plugin/PluginErrorTable.tsx:37 +msgid "Message" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:74 +msgid "Click to edit" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:127 +msgid "Add Part Parameter" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:141 +#: src/tables/part/PartParameterTable.tsx:130 +#: src/tables/part/PartParameterTable.tsx:153 +msgid "Edit Part Parameter" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:224 +msgid "Show active parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:229 +msgid "Show locked parts" +msgstr "" + +#: src/tables/part/ParametricPartTable.tsx:234 +msgid "Show assembly parts" +msgstr "" + +#: src/tables/part/PartCategoryTable.tsx:68 +#: src/tables/part/PartTable.tsx:196 +msgid "Include Subcategories" +msgstr "" + +#: src/tables/part/PartCategoryTable.tsx:69 +msgid "Include subcategories in results" +msgstr "" + +#: src/tables/part/PartCategoryTable.tsx:74 +msgid "Show structural categories" +msgstr "" + +#: src/tables/part/PartCategoryTable.tsx:78 +#: src/tables/part/PartTable.tsx:294 +msgid "Subscribed" +msgstr "" + +#: src/tables/part/PartCategoryTable.tsx:79 +msgid "Show categories to which the user is subscribed" +msgstr "" + +#: src/tables/part/PartCategoryTable.tsx:86 +msgid "New Part Category" +msgstr "" + +#: src/tables/part/PartCategoryTable.tsx:112 +msgid "Add Part Category" +msgstr "" + +#: src/tables/part/PartCategoryTemplateTable.tsx:38 +#: src/tables/part/PartCategoryTemplateTable.tsx:131 +msgid "Add Category Parameter" +msgstr "" + +#: src/tables/part/PartCategoryTemplateTable.tsx:46 +msgid "Edit Category Parameter" +msgstr "" + +#: src/tables/part/PartCategoryTemplateTable.tsx:54 +msgid "Delete Category Parameter" +msgstr "" + +#: src/tables/part/PartCategoryTemplateTable.tsx:76 +msgid "Parameter Template" +msgstr "" + +#: src/tables/part/PartParameterTable.tsx:97 +msgid "Internal Units" +msgstr "" + +#: src/tables/part/PartParameterTable.tsx:114 +msgid "New Part Parameter" +msgstr "" + +#: src/tables/part/PartParameterTable.tsx:139 +#: src/tables/part/PartParameterTable.tsx:161 +msgid "Delete Part Parameter" +msgstr "" + +#: src/tables/part/PartParameterTable.tsx:179 +msgid "Add parameter" +msgstr "" + +#: src/tables/part/PartParameterTable.tsx:198 +msgid "Part parameters cannot be edited, as the part is locked" +msgstr "" + +#: src/tables/part/PartParameterTable.tsx:212 +#: src/tables/stock/StockItemTable.tsx:335 +msgid "Include Variants" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:31 +msgid "Checkbox" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:32 +msgid "Show checkbox templates" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:36 +msgid "Has choices" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:37 +msgid "Show templates with choices" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:41 +#: src/tables/part/PartTable.tsx:220 +msgid "Has Units" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:42 +msgid "Show templates with units" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:85 +msgid "Add Parameter Template" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:100 +msgid "Edit Parameter Template" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:111 +msgid "Delete Parameter Template" +msgstr "" + +#: src/tables/part/PartParameterTemplateTable.tsx:141 +msgid "Add parameter template" +msgstr "" + +#: src/tables/part/PartPurchaseOrdersTable.tsx:77 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:162 +msgid "Total Quantity" +msgstr "" + +#: src/tables/part/PartPurchaseOrdersTable.tsx:115 +msgid "Pending" +msgstr "" + +#: src/tables/part/PartPurchaseOrdersTable.tsx:116 +msgid "Show pending orders" +msgstr "" + +#: src/tables/part/PartPurchaseOrdersTable.tsx:121 +msgid "Show received items" +msgstr "" + +#: src/tables/part/PartTable.tsx:77 +msgid "Minimum stock" +msgstr "" + +#: src/tables/part/PartTable.tsx:179 +msgid "Filter by part active status" +msgstr "" + +#: src/tables/part/PartTable.tsx:185 +msgid "Filter by part locked status" +msgstr "" + +#: src/tables/part/PartTable.tsx:191 +msgid "Filter by assembly attribute" +msgstr "" + +#: src/tables/part/PartTable.tsx:197 +msgid "Include parts in subcategories" +msgstr "" + +#: src/tables/part/PartTable.tsx:203 +msgid "Filter by component attribute" +msgstr "" + +#: src/tables/part/PartTable.tsx:209 +msgid "Filter by testable attribute" +msgstr "" + +#: src/tables/part/PartTable.tsx:215 +msgid "Filter by trackable attribute" +msgstr "" + +#: src/tables/part/PartTable.tsx:221 +msgid "Filter by parts which have units" +msgstr "" + +#: src/tables/part/PartTable.tsx:226 +msgid "Has IPN" +msgstr "" + +#: src/tables/part/PartTable.tsx:227 +msgid "Filter by parts which have an internal part number" +msgstr "" + +#: src/tables/part/PartTable.tsx:232 +msgid "Has Stock" +msgstr "" + +#: src/tables/part/PartTable.tsx:233 +msgid "Filter by parts which have stock" +msgstr "" + +#: src/tables/part/PartTable.tsx:239 +msgid "Filter by parts which have low stock" +msgstr "" + +#: src/tables/part/PartTable.tsx:244 +msgid "Purchaseable" +msgstr "" + +#: src/tables/part/PartTable.tsx:245 +msgid "Filter by parts which are purchaseable" +msgstr "" + +#: src/tables/part/PartTable.tsx:250 +msgid "Salable" +msgstr "" + +#: src/tables/part/PartTable.tsx:251 +msgid "Filter by parts which are salable" +msgstr "" + +#: src/tables/part/PartTable.tsx:256 +#: src/tables/part/PartTable.tsx:260 +#: src/tables/part/PartVariantTable.tsx:25 +msgid "Virtual" +msgstr "" + +#: src/tables/part/PartTable.tsx:257 +msgid "Filter by parts which are virtual" +msgstr "" + +#: src/tables/part/PartTable.tsx:261 +msgid "Not Virtual" +msgstr "" + +#: src/tables/part/PartTable.tsx:266 +msgid "Is Template" +msgstr "" + +#: src/tables/part/PartTable.tsx:267 +msgid "Filter by parts which are templates" +msgstr "" + +#: src/tables/part/PartTable.tsx:272 +msgid "Is Revision" +msgstr "" + +#: src/tables/part/PartTable.tsx:273 +msgid "Filter by parts which are revisions" +msgstr "" + +#: src/tables/part/PartTable.tsx:277 +msgid "Has Revisions" +msgstr "" + +#: src/tables/part/PartTable.tsx:278 +msgid "Filter by parts which have revisions" +msgstr "" + +#: src/tables/part/PartTable.tsx:283 +msgid "Filter by parts which have pricing information" +msgstr "" + +#: src/tables/part/PartTable.tsx:289 +msgid "Filter by parts which have available stock" +msgstr "" + +#: src/tables/part/PartTable.tsx:295 +msgid "Filter by parts to which the user is subscribed" +msgstr "" + +#: src/tables/part/PartTable.tsx:300 +msgid "Has Stocktake" +msgstr "" + +#: src/tables/part/PartTable.tsx:301 +msgid "Filter by parts which have stocktake information" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:50 +msgid "Test is defined for a parent template part" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:64 +msgid "Template Details" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:74 +msgid "Results" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:76 +msgid "No Results" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:107 +msgid "Show required tests" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:111 +#: src/tables/settings/TemplateTable.tsx:170 +#: src/tables/settings/TemplateTable.tsx:286 +msgid "Enabled" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:112 +msgid "Show enabled tests" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:116 +msgid "Requires Value" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:117 +msgid "Show tests that require a value" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:121 +msgid "Requires Attachment" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:122 +msgid "Show tests that require an attachment" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:126 +msgid "Include Inherited" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:127 +msgid "Show tests from inherited templates" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:131 +msgid "Has Results" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:132 +msgid "Show tests which have recorded results" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:154 +#: src/tables/part/PartTestTemplateTable.tsx:237 +msgid "Add Test Template" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:170 +msgid "Edit Test Template" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:181 +msgid "Delete Test Template" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:183 +msgid "This action cannot be reversed" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:185 +msgid "Any tests results associated with this template will be deleted" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:204 +msgid "View Parent Part" +msgstr "" + +#: src/tables/part/PartTestTemplateTable.tsx:257 +msgid "Part templates cannot be edited, as the part is locked" +msgstr "" + +#: src/tables/part/PartThumbTable.tsx:201 +msgid "Select" +msgstr "" + +#: src/tables/part/PartVariantTable.tsx:16 +msgid "Show active variants" +msgstr "" + +#: src/tables/part/PartVariantTable.tsx:20 +msgid "Template" +msgstr "" + +#: src/tables/part/PartVariantTable.tsx:21 +msgid "Show template variants" +msgstr "" + +#: src/tables/part/PartVariantTable.tsx:26 +msgid "Show virtual variants" +msgstr "" + +#: src/tables/part/PartVariantTable.tsx:31 +msgid "Show trackable variants" +msgstr "" + +#: src/tables/part/RelatedPartTable.tsx:84 +msgid "Add Related Part" +msgstr "" + +#: src/tables/part/RelatedPartTable.tsx:99 +msgid "Delete Related Part" +msgstr "" + +#: src/tables/part/RelatedPartTable.tsx:106 +msgid "Add related part" +msgstr "" + +#: src/tables/plugin/PluginErrorTable.tsx:29 +msgid "Stage" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:95 +msgid "Plugin with key {pluginKey} not found" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:97 +msgid "An error occurred while fetching plugin details" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:122 +msgid "Plugin information" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:134 +msgid "Author" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:154 +msgid "Plugin is not active" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:163 +msgid "Package information" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:169 +msgid "Package Name" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:175 +msgid "Installation Path" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:185 +msgid "Package" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:197 +msgid "Plugin settings" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:214 +msgid "Plugin is active" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:220 +msgid "Plugin is inactive" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:227 +msgid "Plugin is not installed" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:253 +msgid "Plugin" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:287 +msgid "Description not available" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:319 +msgid "Confirm plugin activation" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:320 +msgid "Confirm plugin deactivation" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:325 +msgid "The selected plugin will be activated" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:326 +msgid "The selected plugin will be deactivated" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:334 +msgid "Activate Plugin" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:365 +msgid "Deactivate" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:376 +msgid "Activate" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:409 +msgid "Uninstall" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:441 +msgid "Install plugin" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:454 +msgid "Install" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:455 +msgid "Plugin installed successfully" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:460 +msgid "Uninstall Plugin" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:472 +msgid "Confirm plugin uninstall" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:475 +msgid "The selected plugin will be uninstalled." +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:476 +msgid "This action cannot be undone." +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:480 +msgid "Plugin uninstalled successfully" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:487 +msgid "Delete Plugin" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:488 +msgid "Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:501 +msgid "Plugins reloaded" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:502 +msgid "Plugins were reloaded successfully" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:519 +msgid "Reload Plugins" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:525 +msgid "Install Plugin" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:542 +msgid "Plugin Detail" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:571 +msgid "Sample" +msgstr "" + +#: src/tables/plugin/PluginListTable.tsx:576 +#: src/tables/stock/StockItemTable.tsx:340 +msgid "Installed" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:59 +#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:108 +msgid "Add Parameter" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:70 +msgid "Edit Parameter" +msgstr "" + +#: src/tables/purchasing/ManufacturerPartParameterTable.tsx:78 +msgid "Delete Parameter" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102 +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:337 +msgid "Import Line Items" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:135 +msgid "Part Description" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:201 +msgid "Supplier Code" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208 +msgid "Supplier Link" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:213 +msgid "Manufacturer Code" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 +msgid "Destination" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:298 +msgid "Receive line item" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:342 +#: src/tables/sales/ReturnOrderLineItemTable.tsx:142 +#: src/tables/sales/SalesOrderLineItemTable.tsx:257 +msgid "Add line item" +msgstr "" + +#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:352 +msgid "Receive items" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:93 +msgid "MPN" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:122 +msgid "Base units" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:170 +msgid "Supplier part created" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:176 +msgid "Add supplier part" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:188 +msgid "Show active supplier parts" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:192 +msgid "Active Part" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:193 +msgid "Show active internal parts" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:197 +msgid "Active Supplier" +msgstr "" + +#: src/tables/purchasing/SupplierPartTable.tsx:198 +msgid "Show active suppliers" +msgstr "" + +#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 +msgid "Received Date" +msgstr "" + +#: src/tables/sales/ReturnOrderLineItemTable.tsx:128 +msgid "Show items which have been received" +msgstr "" + +#: src/tables/sales/ReturnOrderLineItemTable.tsx:133 +msgid "Filter by line item status" +msgstr "" + +#: src/tables/sales/ReturnOrderLineItemTable.tsx:158 +msgid "Receive Item" +msgstr "" + +#: src/tables/sales/SalesOrderLineItemTable.tsx:238 +msgid "Allocate Serial Numbers" +msgstr "" + +#: src/tables/sales/SalesOrderLineItemTable.tsx:279 +msgid "Allocate stock" +msgstr "" + +#: src/tables/sales/SalesOrderLineItemTable.tsx:290 +msgid "Allocate Serials" +msgstr "" + +#: src/tables/sales/SalesOrderLineItemTable.tsx:303 +msgid "Build stock" +msgstr "" + +#: src/tables/sales/SalesOrderLineItemTable.tsx:320 +#: src/tables/stock/StockItemTable.tsx:507 +msgid "Order stock" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:40 +msgid "Create Shipment" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:50 +msgid "Delete Shipment" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:58 +msgid "Edit Shipment" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:66 +msgid "Shipment Reference" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:71 +msgid "Items" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:83 +msgid "Delivery Date" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:107 +msgid "Complete Shipment" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:133 +msgid "Add shipment" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:146 +msgid "Shipped" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:147 +msgid "Show shipments which have been shipped" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:151 +msgid "Delivered" +msgstr "" + +#: src/tables/sales/SalesOrderShipmentTable.tsx:152 +msgid "Show shipments which have been delivered" +msgstr "" + +#: src/tables/settings/CustomStateTable.tsx:36 +msgid "Display Name" +msgstr "" + +#: src/tables/settings/CustomStateTable.tsx:52 +msgid "Model" +msgstr "" + +#: src/tables/settings/CustomStateTable.tsx:65 +msgid "Add State" +msgstr "" + +#: src/tables/settings/CustomStateTable.tsx:77 +msgid "Edit State" +msgstr "" + +#: src/tables/settings/CustomStateTable.tsx:85 +msgid "Delete State" +msgstr "" + +#: src/tables/settings/CustomStateTable.tsx:115 +msgid "Add state" +msgstr "" + +#: src/tables/settings/CustomUnitsTable.tsx:50 +msgid "Add Custom Unit" +msgstr "" + +#: src/tables/settings/CustomUnitsTable.tsx:60 +msgid "Edit Custom Unit" +msgstr "" + +#: src/tables/settings/CustomUnitsTable.tsx:68 +msgid "Delete Custom Unit" +msgstr "" + +#: src/tables/settings/CustomUnitsTable.tsx:100 +msgid "Add custom unit" +msgstr "" + +#: src/tables/settings/ErrorTable.tsx:31 +msgid "When" +msgstr "" + +#: src/tables/settings/ErrorTable.tsx:41 +msgid "Error Information" +msgstr "" + +#: src/tables/settings/ErrorTable.tsx:53 +msgid "Delete Error Report" +msgstr "" + +#: src/tables/settings/ErrorTable.tsx:55 +msgid "Are you sure you want to delete this error report?" +msgstr "" + +#: src/tables/settings/ErrorTable.tsx:57 +msgid "Error report deleted" +msgstr "" + +#: src/tables/settings/ErrorTable.tsx:79 +#: src/tables/settings/FailedTasksTable.tsx:59 +msgid "Error Details" +msgstr "" + +#: src/tables/settings/FailedTasksTable.tsx:26 +#: src/tables/settings/PendingTasksTable.tsx:19 +#: src/tables/settings/ScheduledTasksTable.tsx:19 +msgid "Task" +msgstr "" + +#: src/tables/settings/FailedTasksTable.tsx:32 +#: src/tables/settings/PendingTasksTable.tsx:24 +msgid "Task ID" +msgstr "" + +#: src/tables/settings/FailedTasksTable.tsx:36 +#: src/tables/stock/StockItemTestResultTable.tsx:218 +msgid "Started" +msgstr "" + +#: src/tables/settings/FailedTasksTable.tsx:42 +msgid "Stopped" +msgstr "" + +#: src/tables/settings/FailedTasksTable.tsx:48 +msgid "Attempts" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:90 +msgid "Group with id {id} not found" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:92 +msgid "An error occurred while fetching group details" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:116 +msgid "Permission set" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:177 +msgid "Delete group" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:178 +msgid "Group deleted" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:180 +msgid "Are you sure you want to delete this group?" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:185 +#: src/tables/settings/GroupTable.tsx:197 +msgid "Add group" +msgstr "" + +#: src/tables/settings/GroupTable.tsx:210 +msgid "Edit group" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:38 +msgid "Delete Import Session" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:44 +#: src/tables/settings/ImportSessionTable.tsx:131 +msgid "Create Import Session" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:69 +msgid "Uploaded" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:79 +msgid "Imported Rows" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:109 +#: src/tables/settings/TemplateTable.tsx:292 +msgid "Model Type" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:110 +#: src/tables/settings/TemplateTable.tsx:293 +msgid "Filter by target model type" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:116 +msgid "Filter by import session status" +msgstr "" + +#: src/tables/settings/ImportSessionTable.tsx:122 +msgid "Filter by user" +msgstr "" + +#: src/tables/settings/PendingTasksTable.tsx:38 +msgid "Arguments" +msgstr "" + +#: src/tables/settings/ProjectCodeTable.tsx:42 +msgid "Add Project Code" +msgstr "" + +#: src/tables/settings/ProjectCodeTable.tsx:54 +msgid "Edit Project Code" +msgstr "" + +#: src/tables/settings/ProjectCodeTable.tsx:62 +msgid "Delete Project Code" +msgstr "" + +#: src/tables/settings/ProjectCodeTable.tsx:92 +msgid "Add project code" +msgstr "" + +#: src/tables/settings/ScheduledTasksTable.tsx:25 +msgid "Last Run" +msgstr "" + +#: src/tables/settings/ScheduledTasksTable.tsx:47 +msgid "Next Run" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:85 +msgid "Template not found" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:87 +msgid "An error occurred while fetching template details" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:180 +msgid "Modify" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:181 +msgid "Modify template file" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:237 +#: src/tables/settings/TemplateTable.tsx:305 +msgid "Edit Template" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:245 +msgid "Delete template" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:251 +msgid "Add Template" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:264 +msgid "Add template" +msgstr "" + +#: src/tables/settings/TemplateTable.tsx:287 +msgid "Filter by enabled status" +msgstr "" + +#: src/tables/settings/UserTable.tsx:82 +msgid "User with id {id} not found" +msgstr "" + +#: src/tables/settings/UserTable.tsx:84 +msgid "An error occurred while fetching user details" +msgstr "" + +#: src/tables/settings/UserTable.tsx:102 +msgid "Is Active" +msgstr "" + +#: src/tables/settings/UserTable.tsx:103 +msgid "Designates whether this user should be treated as active. Unselect this instead of deleting accounts." +msgstr "" + +#: src/tables/settings/UserTable.tsx:107 +msgid "Is Staff" +msgstr "" + +#: src/tables/settings/UserTable.tsx:108 +msgid "Designates whether the user can log into the django admin site." +msgstr "" + +#: src/tables/settings/UserTable.tsx:112 +msgid "Is Superuser" +msgstr "" + +#: src/tables/settings/UserTable.tsx:113 +msgid "Designates that this user has all permissions without explicitly assigning them." +msgstr "" + +#: src/tables/settings/UserTable.tsx:123 +msgid "You cannot edit the rights for the currently logged-in user." +msgstr "" + +#: src/tables/settings/UserTable.tsx:154 +msgid "No groups" +msgstr "" + +#: src/tables/settings/UserTable.tsx:245 +msgid "Delete user" +msgstr "" + +#: src/tables/settings/UserTable.tsx:246 +msgid "User deleted" +msgstr "" + +#: src/tables/settings/UserTable.tsx:248 +msgid "Are you sure you want to delete this user?" +msgstr "" + +#: src/tables/settings/UserTable.tsx:254 +#: src/tables/settings/UserTable.tsx:272 +msgid "Add user" +msgstr "" + +#: src/tables/settings/UserTable.tsx:262 +msgid "Added user" +msgstr "" + +#: src/tables/settings/UserTable.tsx:285 +msgid "Show active users" +msgstr "" + +#: src/tables/settings/UserTable.tsx:289 +msgid "Staff" +msgstr "" + +#: src/tables/settings/UserTable.tsx:290 +msgid "Show staff users" +msgstr "" + +#: src/tables/settings/UserTable.tsx:295 +msgid "Show superusers" +msgstr "" + +#: src/tables/settings/UserTable.tsx:305 +msgid "Edit user" +msgstr "" + +#: src/tables/stock/LocationTypesTable.tsx:39 +#: src/tables/stock/LocationTypesTable.tsx:109 +msgid "Add Location Type" +msgstr "" + +#: src/tables/stock/LocationTypesTable.tsx:47 +msgid "Edit Location Type" +msgstr "" + +#: src/tables/stock/LocationTypesTable.tsx:55 +msgid "Delete Location Type" +msgstr "" + +#: src/tables/stock/LocationTypesTable.tsx:63 +msgid "Icon" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:101 +msgid "This stock item is in production" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:110 +msgid "This stock item has been assigned to a sales order" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:119 +msgid "This stock item has been assigned to a customer" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:128 +msgid "This stock item is installed in another stock item" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:137 +msgid "This stock item has been consumed by a build order" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:146 +msgid "This stock item has expired" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:150 +msgid "This stock item is stale" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:161 +msgid "This stock item is fully allocated" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:168 +msgid "This stock item is partially allocated" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:196 +msgid "This stock item has been depleted" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:232 +msgid "Stocktake Date" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:236 +msgid "Expiry Date" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:260 +msgid "Stock Value" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:290 +msgid "Show stock for active parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:295 +msgid "Filter by stock status" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:301 +msgid "Show stock for assembled parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:306 +msgid "Show items which have been allocated" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:311 +msgid "Show items which are available" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:315 +#: src/tables/stock/StockLocationTable.tsx:44 +msgid "Include Sublocations" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:316 +msgid "Include stock in sublocations" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:320 +msgid "Depleted" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:321 +msgid "Show depleted stock items" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:326 +msgid "Show items which are in stock" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:331 +msgid "Show items which are in production" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:336 +msgid "Include stock items for variant parts" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:341 +msgid "Show stock items which are installed in other items" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:345 +msgid "Sent to Customer" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:346 +msgid "Show items which have been sent to a customer" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:350 +msgid "Is Serialized" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:351 +msgid "Show items which have a serial number" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:358 +msgid "Has Batch Code" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:359 +msgid "Show items which have a batch code" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:365 +msgid "Show tracked items" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:369 +msgid "Has Purchase Price" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:370 +msgid "Show items which have a purchase price" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:378 +msgid "External Location" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:379 +msgid "Show items in an external location" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:451 +msgid "Add a new stock item" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:460 +msgid "Remove some quantity from a stock item" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:482 +msgid "Move Stock items to new locations" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:489 +msgid "Change stock status" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:491 +msgid "Change the status of stock items" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:498 +msgid "Merge stock" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:500 +msgid "Merge stock items" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:509 +#: src/tables/stock/StockItemTable.tsx:516 +msgid "Order new stock" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:514 +msgid "Assign to customer" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:523 +msgid "Delete stock" +msgstr "" + +#: src/tables/stock/StockItemTable.tsx:525 +msgid "Delete stock items" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:137 +msgid "Test" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:163 +msgid "Test result for installed stock item" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:174 +msgid "Result" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:196 +msgid "Attachment" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:212 +msgid "Test station" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:234 +msgid "Finished" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:286 +#: src/tables/stock/StockItemTestResultTable.tsx:357 +msgid "Edit Test Result" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:288 +msgid "Test result updated" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:294 +#: src/tables/stock/StockItemTestResultTable.tsx:366 +msgid "Delete Test Result" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:296 +msgid "Test result deleted" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:310 +msgid "Test Passed" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:311 +msgid "Test result has been recorded" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:318 +msgid "Failed to record test result" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:335 +msgid "Pass Test" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:384 +msgid "Show results for required tests" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:388 +msgid "Include Installed" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:389 +msgid "Show results for installed stock items" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:393 +#: src/tables/stock/TestStatisticsTable.tsx:74 +msgid "Passed" +msgstr "" + +#: src/tables/stock/StockItemTestResultTable.tsx:394 +msgid "Show only passed tests" +msgstr "" + +#: src/tables/stock/StockLocationTable.tsx:45 +msgid "Include sublocations in results" +msgstr "" + +#: src/tables/stock/StockLocationTable.tsx:50 +msgid "Show structural locations" +msgstr "" + +#: src/tables/stock/StockLocationTable.tsx:55 +msgid "Show external locations" +msgstr "" + +#: src/tables/stock/StockLocationTable.tsx:59 +msgid "Has location type" +msgstr "" + +#: src/tables/stock/StockLocationTable.tsx:64 +msgid "Filter by location type" +msgstr "" + +#: src/tables/stock/StockLocationTable.tsx:107 +#: src/tables/stock/StockLocationTable.tsx:133 +msgid "Add Stock Location" +msgstr "" + +#: src/tables/stock/StockTrackingTable.tsx:64 +msgid "Added" +msgstr "" + +#: src/tables/stock/StockTrackingTable.tsx:69 +msgid "Removed" +msgstr "" + +#: src/tables/stock/StockTrackingTable.tsx:198 +msgid "No user information" +msgstr "" + +#: src/tables/stock/TestStatisticsTable.tsx:46 +#: src/tables/stock/TestStatisticsTable.tsx:76 +msgid "Total" +msgstr "" + +#: src/tables/stock/TestStatisticsTable.tsx:75 +msgid "Failed" +msgstr "" + +#: src/views/MobileAppView.tsx:22 +msgid "Mobile viewport detected" +msgstr "" + +#: src/views/MobileAppView.tsx:25 +msgid "Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience." +msgstr "" + +#: src/views/MobileAppView.tsx:31 +msgid "Read the docs" +msgstr "" + +#: src/views/MobileAppView.tsx:35 +msgid "Ignore and continue to Desktop view" +msgstr "" From 7c937fa283650c2ff2b5e8a2f913807a5d948ab7 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Tue, 17 Sep 2024 06:16:29 +0200 Subject: [PATCH 08/22] [PUI] fix a few sonarcloud warnings (#8133) * fix a few code issues * fix common sonarcloud issues * more small fixes --- src/frontend/src/components/Boundary.tsx | 8 +-- .../src/components/buttons/AdminButton.tsx | 2 +- .../buttons/PrimaryActionButton.tsx | 4 +- .../components/buttons/RemoveRowButton.tsx | 4 +- .../src/components/buttons/YesNoButton.tsx | 12 ++-- .../src/components/editors/NotesEditor.tsx | 8 +-- .../src/components/errors/ClientError.tsx | 2 +- .../components/errors/GenericErrorPage.tsx | 4 +- .../components/forms/fields/ChoiceField.tsx | 6 +- .../forms/fields/DependentField.tsx | 4 +- .../components/forms/fields/TableField.tsx | 6 +- .../src/components/forms/fields/TextField.tsx | 4 +- .../src/components/images/Thumbnail.tsx | 8 +-- .../importer/ImportDataSelector.tsx | 9 +-- .../importer/ImporterColumnSelector.tsx | 14 +++-- .../components/importer/ImporterDrawer.tsx | 8 ++- .../importer/ImporterImportProgress.tsx | 4 +- .../src/components/items/ActionDropdown.tsx | 4 +- src/frontend/src/components/items/QRCode.tsx | 2 - .../src/components/nav/InstanceDetail.tsx | 4 +- .../src/components/nav/NavigationTree.tsx | 4 +- .../src/components/plugins/PluginPanel.tsx | 4 +- .../src/components/render/Instance.tsx | 12 ++-- src/frontend/src/components/render/Plugin.tsx | 4 +- src/frontend/src/components/render/Report.tsx | 8 +-- .../components/settings/FactCollection.tsx | 10 ++- .../src/components/settings/FactItem.tsx | 5 +- src/frontend/src/forms/BuildForms.tsx | 62 +++++++++---------- src/frontend/src/forms/PurchaseOrderForms.tsx | 6 +- src/frontend/src/hooks/UsePluginPanels.tsx | 3 +- .../AccountSettings/UserThemePanel.tsx | 5 +- .../AdminCenter/PluginManagementPanel.tsx | 1 - .../pages/Index/Settings/SystemSettings.tsx | 1 - .../part/pricing/PurchaseHistoryPanel.tsx | 11 +--- .../pages/part/pricing/SaleHistoryPanel.tsx | 11 +--- .../tables/build/BuildAllocatedStockTable.tsx | 4 +- .../src/tables/build/BuildLineTable.tsx | 8 ++- .../src/tables/build/BuildOrderTestTable.tsx | 4 +- .../src/tables/build/BuildOutputTable.tsx | 6 +- .../src/tables/general/ExtraLineItemTable.tsx | 5 +- .../src/tables/part/PartParameterTable.tsx | 4 +- .../tables/part/PartPurchaseOrdersTable.tsx | 40 ++++++------ .../src/tables/part/PartTestTemplateTable.tsx | 5 +- .../src/tables/plugin/PluginListTable.tsx | 8 ++- .../tables/sales/ReturnOrderLineItemTable.tsx | 5 +- .../sales/SalesOrderAllocationTable.tsx | 46 +++++++------- .../tables/sales/SalesOrderLineItemTable.tsx | 7 ++- .../tables/sales/SalesOrderShipmentTable.tsx | 5 +- .../tables/settings/ImportSessionTable.tsx | 2 +- .../src/tables/settings/UserTable.tsx | 5 +- .../src/tables/stock/StockTrackingTable.tsx | 2 +- .../src/tables/stock/TestStatisticsTable.tsx | 18 +----- src/frontend/tests/pui_plugins.spec.ts | 2 +- 53 files changed, 211 insertions(+), 229 deletions(-) diff --git a/src/frontend/src/components/Boundary.tsx b/src/frontend/src/components/Boundary.tsx index 1ad6529883..126b9b76fb 100644 --- a/src/frontend/src/components/Boundary.tsx +++ b/src/frontend/src/components/Boundary.tsx @@ -4,7 +4,7 @@ import { ErrorBoundary, FallbackRender } from '@sentry/react'; import { IconExclamationCircle } from '@tabler/icons-react'; import { ReactNode, useCallback } from 'react'; -function DefaultFallback({ title }: { title: String }): ReactNode { +function DefaultFallback({ title }: Readonly<{ title: string }>): ReactNode { return ( ): ReactNode { const onError = useCallback( (error: unknown, componentStack: string | undefined, eventId: string) => { console.error(`Error rendering component: ${label}`); diff --git a/src/frontend/src/components/buttons/AdminButton.tsx b/src/frontend/src/components/buttons/AdminButton.tsx index 0b59e0be9e..cccf7c6c48 100644 --- a/src/frontend/src/components/buttons/AdminButton.tsx +++ b/src/frontend/src/components/buttons/AdminButton.tsx @@ -22,7 +22,7 @@ export type AdminButtonProps = { * - The user has "superuser" role * - The user has at least read rights for the selected item */ -export default function AdminButton(props: AdminButtonProps) { +export default function AdminButton(props: Readonly) { const user = useUserState(); const enabled: boolean = useMemo(() => { diff --git a/src/frontend/src/components/buttons/PrimaryActionButton.tsx b/src/frontend/src/components/buttons/PrimaryActionButton.tsx index c4c61d2e89..65aa4defae 100644 --- a/src/frontend/src/components/buttons/PrimaryActionButton.tsx +++ b/src/frontend/src/components/buttons/PrimaryActionButton.tsx @@ -12,14 +12,14 @@ export default function PrimaryActionButton({ color, hidden, onClick -}: { +}: Readonly<{ title: string; tooltip?: string; icon?: InvenTreeIconType; color?: string; hidden?: boolean; onClick: () => void; -}) { +}>) { if (hidden) { return null; } diff --git a/src/frontend/src/components/buttons/RemoveRowButton.tsx b/src/frontend/src/components/buttons/RemoveRowButton.tsx index f46a928cfc..ebdcca60c1 100644 --- a/src/frontend/src/components/buttons/RemoveRowButton.tsx +++ b/src/frontend/src/components/buttons/RemoveRowButton.tsx @@ -6,10 +6,10 @@ import { ActionButton } from './ActionButton'; export default function RemoveRowButton({ onClick, tooltip = t`Remove this row` -}: { +}: Readonly<{ onClick: () => void; tooltip?: string; -}) { +}>) { return ( ) { const v = isTrue(value); - const pass = passText || t`Pass`; - const fail = failText || t`Fail`; + const pass = passText ?? t`Pass`; + const fail = failText ?? t`Fail`; return ( ) { return ; } -export function YesNoUndefinedButton({ value }: { value?: boolean }) { +export function YesNoUndefinedButton({ value }: Readonly<{ value?: boolean }>) { if (value === undefined) { return ; } else { diff --git a/src/frontend/src/components/editors/NotesEditor.tsx b/src/frontend/src/components/editors/NotesEditor.tsx index e7f02c3d89..5cd3382795 100644 --- a/src/frontend/src/components/editors/NotesEditor.tsx +++ b/src/frontend/src/components/editors/NotesEditor.tsx @@ -1,6 +1,4 @@ -// import SimpleMDE from "react-simplemde-editor"; import { t } from '@lingui/macro'; -import { useMantineColorScheme } from '@mantine/core'; import { notifications } from '@mantine/notifications'; import { useQuery } from '@tanstack/react-query'; import EasyMDE, { default as SimpleMde } from 'easymde'; @@ -60,13 +58,11 @@ export default function NotesEditor({ modelType, modelId, editable -}: { +}: Readonly<{ modelType: ModelType; modelId: number; editable?: boolean; -}) { - const { colorScheme } = useMantineColorScheme(); - +}>) { // In addition to the editable prop, we also need to check if the user has "enabled" editing const [editing, setEditing] = useState(false); diff --git a/src/frontend/src/components/errors/ClientError.tsx b/src/frontend/src/components/errors/ClientError.tsx index 85811ac736..67869b7231 100644 --- a/src/frontend/src/components/errors/ClientError.tsx +++ b/src/frontend/src/components/errors/ClientError.tsx @@ -5,7 +5,7 @@ import NotAuthenticated from './NotAuthenticated'; import NotFound from './NotFound'; import PermissionDenied from './PermissionDenied'; -export default function ClientError({ status }: { status?: number }) { +export default function ClientError({ status }: Readonly<{ status?: number }>) { switch (status) { case 401: return ; diff --git a/src/frontend/src/components/errors/GenericErrorPage.tsx b/src/frontend/src/components/errors/GenericErrorPage.tsx index 0e712e0bb0..128f487955 100644 --- a/src/frontend/src/components/errors/GenericErrorPage.tsx +++ b/src/frontend/src/components/errors/GenericErrorPage.tsx @@ -19,13 +19,13 @@ export default function ErrorPage({ title, message, status -}: { +}: Readonly<{ title: string; message: string; status?: number; redirectMessage?: string; redirectTarget?: string; -}) { +}>) { const navigate = useNavigate(); return ( diff --git a/src/frontend/src/components/forms/fields/ChoiceField.tsx b/src/frontend/src/components/forms/fields/ChoiceField.tsx index 10e860aedd..fcf6f21917 100644 --- a/src/frontend/src/components/forms/fields/ChoiceField.tsx +++ b/src/frontend/src/components/forms/fields/ChoiceField.tsx @@ -1,6 +1,6 @@ import { Select } from '@mantine/core'; import { useId } from '@mantine/hooks'; -import { useCallback, useEffect, useMemo } from 'react'; +import { useCallback, useMemo } from 'react'; import { FieldValues, UseControllerReturn } from 'react-hook-form'; import { ApiFormFieldType } from './ApiFormField'; @@ -12,11 +12,11 @@ export function ChoiceField({ controller, definition, fieldName -}: { +}: Readonly<{ controller: UseControllerReturn; definition: ApiFormFieldType; fieldName: string; -}) { +}>) { const fieldId = useId(); const { diff --git a/src/frontend/src/components/forms/fields/DependentField.tsx b/src/frontend/src/components/forms/fields/DependentField.tsx index 216275d6b7..0b44ba7ccd 100644 --- a/src/frontend/src/components/forms/fields/DependentField.tsx +++ b/src/frontend/src/components/forms/fields/DependentField.tsx @@ -18,13 +18,13 @@ export function DependentField({ definition, url, setFields -}: { +}: Readonly<{ control: Control; definition: ApiFormFieldType; fieldName: string; url?: string; setFields?: React.Dispatch>; -}) { +}>) { const { watch, resetField } = useFormContext(); const mappedFieldNames = useMemo( diff --git a/src/frontend/src/components/forms/fields/TableField.tsx b/src/frontend/src/components/forms/fields/TableField.tsx index 333ed40cac..83841eef31 100644 --- a/src/frontend/src/components/forms/fields/TableField.tsx +++ b/src/frontend/src/components/forms/fields/TableField.tsx @@ -20,16 +20,16 @@ export function TableField({ definition, fieldName, control -}: { +}: Readonly<{ definition: ApiFormFieldType; fieldName: string; control: UseControllerReturn; -}) { +}>) { const { field, fieldState: { error } } = control; - const { value, ref } = field; + const { value } = field; const onRowFieldChange = (idx: number, key: string, value: any) => { const val = field.value; diff --git a/src/frontend/src/components/forms/fields/TextField.tsx b/src/frontend/src/components/forms/fields/TextField.tsx index 0445d4feaa..1f5cabf13e 100644 --- a/src/frontend/src/components/forms/fields/TextField.tsx +++ b/src/frontend/src/components/forms/fields/TextField.tsx @@ -14,12 +14,12 @@ export default function TextField({ fieldName, definition, onChange -}: { +}: Readonly<{ controller: UseControllerReturn; definition: any; fieldName: string; onChange: (value: any) => void; -}) { +}>) { const fieldId = useId(); const { field, diff --git a/src/frontend/src/components/images/Thumbnail.tsx b/src/frontend/src/components/images/Thumbnail.tsx index 63e2414122..148fcc09f9 100644 --- a/src/frontend/src/components/images/Thumbnail.tsx +++ b/src/frontend/src/components/images/Thumbnail.tsx @@ -1,5 +1,5 @@ import { t } from '@lingui/macro'; -import { Anchor, Group, Skeleton, Text } from '@mantine/core'; +import { Anchor, Group } from '@mantine/core'; import { ReactNode, useMemo } from 'react'; import { ApiImage } from './ApiImage'; @@ -14,14 +14,14 @@ export function Thumbnail({ link, text, align -}: { - src?: string | undefined; +}: Readonly<{ + src?: string; alt?: string; size?: number; text?: ReactNode; align?: string; link?: string; -}) { +}>) { const backup_image = '/static/img/blank_image.png'; const inner = useMemo(() => { diff --git a/src/frontend/src/components/importer/ImportDataSelector.tsx b/src/frontend/src/components/importer/ImportDataSelector.tsx index 83c210e3f3..1cdd1ccf97 100644 --- a/src/frontend/src/components/importer/ImportDataSelector.tsx +++ b/src/frontend/src/components/importer/ImportDataSelector.tsx @@ -38,12 +38,12 @@ function ImporterDataCell({ column, row, onEdit -}: { +}: Readonly<{ session: ImportSessionState; column: any; row: any; onEdit?: () => void; -}) { +}>) { const onRowEdit = useCallback( (event: any) => { cancelEvent(event); @@ -128,9 +128,9 @@ function ImporterDataCell({ export default function ImporterDataSelector({ session -}: { +}: Readonly<{ session: ImportSessionState; -}) { +}>) { const table = useTable('dataimporter'); const [selectedFieldNames, setSelectedFieldNames] = useState([]); @@ -377,6 +377,7 @@ export default function ImporterDataSelector({ return [ } color="green" diff --git a/src/frontend/src/components/importer/ImporterColumnSelector.tsx b/src/frontend/src/components/importer/ImporterColumnSelector.tsx index 0fe47653db..1e903009f0 100644 --- a/src/frontend/src/components/importer/ImporterColumnSelector.tsx +++ b/src/frontend/src/components/importer/ImporterColumnSelector.tsx @@ -20,7 +20,10 @@ import { apiUrl } from '../../states/ApiState'; import { StandaloneField } from '../forms/StandaloneField'; import { ApiFormFieldType } from '../forms/fields/ApiFormField'; -function ImporterColumn({ column, options }: { column: any; options: any[] }) { +function ImporterColumn({ + column, + options +}: Readonly<{ column: any; options: any[] }>) { const [errorMessage, setErrorMessage] = useState(''); const [selectedColumn, setSelectedColumn] = useState( @@ -122,11 +125,11 @@ function ImporterColumnTableRow({ session, column, options -}: { +}: Readonly<{ session: ImportSessionState; column: any; options: any; -}) { +}>) { return ( @@ -156,9 +159,9 @@ function ImporterColumnTableRow({ export default function ImporterColumnSelector({ session -}: { +}: Readonly<{ session: ImportSessionState; -}) { +}>) { const [errorMessage, setErrorMessage] = useState(''); const acceptMapping = useCallback(() => { @@ -221,6 +224,7 @@ export default function ImporterColumnSelector({ {session.columnMappings.map((column: any) => { return ( ) { /* TODO: Enhance this with: * - Custom icons * - Loading indicators for "background" states @@ -54,11 +56,11 @@ export default function ImporterDrawer({ sessionId, opened, onClose -}: { +}: Readonly<{ sessionId: number; opened: boolean; onClose: () => void; -}) { +}>) { const session = useImportSession({ sessionId: sessionId }); const importSessionStatus = useStatusCodes({ diff --git a/src/frontend/src/components/importer/ImporterImportProgress.tsx b/src/frontend/src/components/importer/ImporterImportProgress.tsx index 34231e9d9f..01820ec675 100644 --- a/src/frontend/src/components/importer/ImporterImportProgress.tsx +++ b/src/frontend/src/components/importer/ImporterImportProgress.tsx @@ -10,9 +10,9 @@ import { StylishText } from '../items/StylishText'; export default function ImporterImportProgress({ session -}: { +}: Readonly<{ session: ImportSessionState; -}) { +}>) { const importSessionStatus = useStatusCodes({ modelType: ModelType.importsession }); diff --git a/src/frontend/src/components/items/ActionDropdown.tsx b/src/frontend/src/components/items/ActionDropdown.tsx index aca665ffd6..e8e730af90 100644 --- a/src/frontend/src/components/items/ActionDropdown.tsx +++ b/src/frontend/src/components/items/ActionDropdown.tsx @@ -127,11 +127,11 @@ export function OptionsActionDropdown({ actions = [], tooltip = t`Options`, hidden = false -}: { +}: Readonly<{ actions: ActionDropdownItem[]; tooltip?: string; hidden?: boolean; -}) { +}>) { return ( } diff --git a/src/frontend/src/components/items/QRCode.tsx b/src/frontend/src/components/items/QRCode.tsx index 627dcfa459..be8c573bb3 100644 --- a/src/frontend/src/components/items/QRCode.tsx +++ b/src/frontend/src/components/items/QRCode.tsx @@ -11,7 +11,6 @@ import { Stack, Text } from '@mantine/core'; -import { useDisclosure } from '@mantine/hooks'; import { modals } from '@mantine/modals'; import { useQuery } from '@tanstack/react-query'; import QR from 'qrcode'; @@ -143,7 +142,6 @@ export const InvenTreeQRCode = ({ export const QRCodeLink = ({ mdl_prop }: { mdl_prop: QrCodeType }) => { const [barcode, setBarcode] = useState(''); - const [isScanning, toggleIsScanning] = useDisclosure(false); function linkBarcode(value?: string) { api diff --git a/src/frontend/src/components/nav/InstanceDetail.tsx b/src/frontend/src/components/nav/InstanceDetail.tsx index 1baeb669a5..98ed5d0292 100644 --- a/src/frontend/src/components/nav/InstanceDetail.tsx +++ b/src/frontend/src/components/nav/InstanceDetail.tsx @@ -8,11 +8,11 @@ export default function InstanceDetail({ status, loading, children -}: { +}: Readonly<{ status: number; loading: boolean; children: React.ReactNode; -}) { +}>) { const user = useUserState(); if (loading || !user.isLoggedIn()) { diff --git a/src/frontend/src/components/nav/NavigationTree.tsx b/src/frontend/src/components/nav/NavigationTree.tsx index ceb166cf0c..ec2773f92e 100644 --- a/src/frontend/src/components/nav/NavigationTree.tsx +++ b/src/frontend/src/components/nav/NavigationTree.tsx @@ -40,14 +40,14 @@ export default function NavigationTree({ selectedId, modelType, endpoint -}: { +}: Readonly<{ title: string; opened: boolean; onClose: () => void; selectedId?: number | null; modelType: ModelType; endpoint: ApiEndpoints; -}) { +}>) { const navigate = useNavigate(); const treeState = useTree(); diff --git a/src/frontend/src/components/plugins/PluginPanel.tsx b/src/frontend/src/components/plugins/PluginPanel.tsx index d2bb708275..dbabc549b8 100644 --- a/src/frontend/src/components/plugins/PluginPanel.tsx +++ b/src/frontend/src/components/plugins/PluginPanel.tsx @@ -64,10 +64,10 @@ export async function isPluginPanelHidden({ export default function PluginPanelContent({ pluginProps, pluginContext -}: { +}: Readonly<{ pluginProps: PluginPanelProps; pluginContext: PluginContext; -}): ReactNode { +}>): ReactNode { const ref = useRef(); const [error, setError] = useState(undefined); diff --git a/src/frontend/src/components/render/Instance.tsx b/src/frontend/src/components/render/Instance.tsx index c2df42a7d3..9f9c4b1c76 100644 --- a/src/frontend/src/components/render/Instance.tsx +++ b/src/frontend/src/components/render/Instance.tsx @@ -121,10 +121,10 @@ export function RenderInstance(props: RenderInstanceProps): ReactNode { export function RenderRemoteInstance({ model, pk -}: { +}: Readonly<{ model: ModelType; pk: number; -}): ReactNode { +}>): ReactNode { const { data, isLoading, isFetching } = useQuery({ queryKey: ['model', model, pk], queryFn: async () => { @@ -166,7 +166,7 @@ export function RenderInlineModel({ navigate, showSecondary = true, tooltip -}: { +}: Readonly<{ primary: string; secondary?: string; showSecondary?: boolean; @@ -177,7 +177,7 @@ export function RenderInlineModel({ url?: string; navigate?: any; tooltip?: string; -}): ReactNode { +}>): ReactNode { // TODO: Handle labels const onClick = useCallback( @@ -215,9 +215,9 @@ export function RenderInlineModel({ export function UnknownRenderer({ model -}: { +}: Readonly<{ model: ModelType | undefined; -}): ReactNode { +}>): ReactNode { return ( <> diff --git a/src/frontend/src/components/render/Plugin.tsx b/src/frontend/src/components/render/Plugin.tsx index 6ba246ef4d..59770d00dd 100644 --- a/src/frontend/src/components/render/Plugin.tsx +++ b/src/frontend/src/components/render/Plugin.tsx @@ -6,9 +6,9 @@ import { RenderInlineModel } from './Instance'; export function RenderPlugin({ instance -}: { +}: Readonly<{ instance: Readonly; -}): ReactNode { +}>): ReactNode { return ( ): ReactNode { return ( ): ReactNode { return ( ) { return ( {items.map((item, index) => ( - + ))} ); diff --git a/src/frontend/src/components/settings/FactItem.tsx b/src/frontend/src/components/settings/FactItem.tsx index bc549c3b50..a4a69cf926 100644 --- a/src/frontend/src/components/settings/FactItem.tsx +++ b/src/frontend/src/components/settings/FactItem.tsx @@ -2,7 +2,10 @@ import { Paper, Stack, Text } from '@mantine/core'; import { StylishText } from '../items/StylishText'; -export function FactItem({ title, value }: { title: string; value: number }) { +export function FactItem({ + title, + value +}: Readonly<{ title: string; value: number }>) { return ( diff --git a/src/frontend/src/forms/BuildForms.tsx b/src/frontend/src/forms/BuildForms.tsx index b5b69e718d..5ce8aacedb 100644 --- a/src/frontend/src/forms/BuildForms.tsx +++ b/src/frontend/src/forms/BuildForms.tsx @@ -11,7 +11,6 @@ import { } from '@tabler/icons-react'; import { DataTable } from 'mantine-datatable'; import { useEffect, useMemo, useState } from 'react'; -import { useFormContext } from 'react-hook-form'; import { api } from '../App'; import { ActionButton } from '../components/buttons/ActionButton'; @@ -25,7 +24,6 @@ import { TableFieldRowProps } from '../components/forms/fields/TableField'; import { ProgressBar } from '../components/items/ProgressBar'; import { ApiEndpoints } from '../enums/ApiEndpoints'; import { ModelType } from '../enums/ModelType'; -import { resolveItem } from '../functions/conversion'; import { InvenTreeIcon } from '../functions/icons'; import { useCreateApiFormModal } from '../hooks/UseForm'; import { useBatchCodeGenerator } from '../hooks/UseGenerator'; @@ -487,11 +485,11 @@ function BuildAllocateLineRow({ props, record, sourceLocation -}: { +}: Readonly<{ props: TableFieldRowProps; record: any; sourceLocation: number | undefined; -}) { +}>) { const stockField: ApiFormFieldType = useMemo(() => { return { field_type: 'related field', @@ -542,35 +540,33 @@ function BuildAllocateLineRow({ ); return ( - <> - - {partDetail} - - - - - - - - - - - props.removeFn(props.idx)} /> - - - + + {partDetail} + + + + + + + + + + + props.removeFn(props.idx)} /> + + ); } diff --git a/src/frontend/src/forms/PurchaseOrderForms.tsx b/src/frontend/src/forms/PurchaseOrderForms.tsx index 1d0b4c3019..067bb19fb4 100644 --- a/src/frontend/src/forms/PurchaseOrderForms.tsx +++ b/src/frontend/src/forms/PurchaseOrderForms.tsx @@ -197,11 +197,11 @@ function LineItemFormRow({ props, record, statuses -}: { +}: Readonly<{ props: TableFieldRowProps; record: any; statuses: any; -}) { +}>) { // Barcode Modal state const [opened, { open, close }] = useDisclosure(false, { onClose: () => props.changeFn(props.idx, 'barcode', undefined) @@ -263,7 +263,7 @@ function LineItemFormRow({ // Barcode value const [barcodeInput, setBarcodeInput] = useState(''); - const [barcode, setBarcode] = useState(undefined); + const [barcode, setBarcode] = useState(undefined); // Change form value when state is altered useEffect(() => { diff --git a/src/frontend/src/hooks/UsePluginPanels.tsx b/src/frontend/src/hooks/UsePluginPanels.tsx index 710b39f1df..aa676278f4 100644 --- a/src/frontend/src/hooks/UsePluginPanels.tsx +++ b/src/frontend/src/hooks/UsePluginPanels.tsx @@ -6,11 +6,10 @@ import { useNavigate } from 'react-router-dom'; import { api } from '../App'; import { PanelType } from '../components/nav/Panel'; import { PluginContext } from '../components/plugins/PluginContext'; -import { +import PluginPanelContent, { PluginPanelProps, isPluginPanelHidden } from '../components/plugins/PluginPanel'; -import PluginPanelContent from '../components/plugins/PluginPanel'; import { ApiEndpoints } from '../enums/ApiEndpoints'; import { ModelType } from '../enums/ModelType'; import { identifierString } from '../functions/conversion'; diff --git a/src/frontend/src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx b/src/frontend/src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx index 40dcb1be60..609ca51ba3 100644 --- a/src/frontend/src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx +++ b/src/frontend/src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx @@ -14,13 +14,12 @@ import { Title, useMantineTheme } from '@mantine/core'; -import { IconReload, IconRestore } from '@tabler/icons-react'; +import { IconRestore } from '@tabler/icons-react'; import { useState } from 'react'; import { ColorToggle } from '../../../../components/items/ColorToggle'; import { LanguageSelect } from '../../../../components/items/LanguageSelect'; import { SizeMarks } from '../../../../defaults/defaults'; -import { notYetImplemented } from '../../../../functions/notifications'; import { IS_DEV } from '../../../../main'; import { useLocalState } from '../../../../states/LocalState'; @@ -32,7 +31,7 @@ const LOOKUP = Object.assign( ...Object.keys(DEFAULT_THEME.colors).map((clr) => getLkp(clr)) ); -export function UserTheme({ height }: { height: number }) { +export function UserTheme({ height }: Readonly<{ height: number }>) { const theme = useMantineTheme(); const [themeLoader, setThemeLoader] = useLocalState((state) => [ diff --git a/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx b/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx index 7dca628bcd..59d1445b49 100644 --- a/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx +++ b/src/frontend/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx @@ -1,7 +1,6 @@ import { Trans, t } from '@lingui/macro'; import { Accordion, Alert, Stack } from '@mantine/core'; import { IconInfoCircle } from '@tabler/icons-react'; -import { userInfo } from 'os'; import { lazy } from 'react'; import { StylishText } from '../../../../components/items/StylishText'; diff --git a/src/frontend/src/pages/Index/Settings/SystemSettings.tsx b/src/frontend/src/pages/Index/Settings/SystemSettings.tsx index 29c727a2a7..22969847b7 100644 --- a/src/frontend/src/pages/Index/Settings/SystemSettings.tsx +++ b/src/frontend/src/pages/Index/Settings/SystemSettings.tsx @@ -11,7 +11,6 @@ import { IconQrcode, IconServerCog, IconShoppingCart, - IconSitemap, IconTag, IconTools, IconTruckDelivery, diff --git a/src/frontend/src/pages/part/pricing/PurchaseHistoryPanel.tsx b/src/frontend/src/pages/part/pricing/PurchaseHistoryPanel.tsx index 1c4a4880eb..29e4c5de6c 100644 --- a/src/frontend/src/pages/part/pricing/PurchaseHistoryPanel.tsx +++ b/src/frontend/src/pages/part/pricing/PurchaseHistoryPanel.tsx @@ -13,9 +13,9 @@ import { NoPricingData } from './PricingPanel'; export default function PurchaseHistoryPanel({ part -}: { +}: Readonly<{ part: any; -}): ReactNode { +}>): ReactNode { const table = useTable('pricing-purchase-history'); const calculateUnitPrice = useCallback((record: any) => { @@ -86,13 +86,6 @@ export default function PurchaseHistoryPanel({ ]; }, []); - const currency: string = useMemo(() => { - if (table.records.length === 0) { - return ''; - } - return table.records[0].purchase_price_currency; - }, [table.records]); - const purchaseHistoryData = useMemo(() => { return table.records.map((record: any) => { return { diff --git a/src/frontend/src/pages/part/pricing/SaleHistoryPanel.tsx b/src/frontend/src/pages/part/pricing/SaleHistoryPanel.tsx index a71427c24d..359f003463 100644 --- a/src/frontend/src/pages/part/pricing/SaleHistoryPanel.tsx +++ b/src/frontend/src/pages/part/pricing/SaleHistoryPanel.tsx @@ -12,7 +12,9 @@ import { DateColumn } from '../../../tables/ColumnRenderers'; import { InvenTreeTable } from '../../../tables/InvenTreeTable'; import { NoPricingData } from './PricingPanel'; -export default function SaleHistoryPanel({ part }: { part: any }): ReactNode { +export default function SaleHistoryPanel({ + part +}: Readonly<{ part: any }>): ReactNode { const table = useTable('pricing-sale-history'); const columns: TableColumn[] = useMemo(() => { @@ -51,13 +53,6 @@ export default function SaleHistoryPanel({ part }: { part: any }): ReactNode { ]; }, []); - const currency: string = useMemo(() => { - if (table.records.length === 0) { - return ''; - } - return table.records[0].sale_price_currency; - }, [table.records]); - const saleHistoryData = useMemo(() => { return table.records.map((record: any) => { return { diff --git a/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx b/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx index f39bdbbdf0..2db9b50e6d 100644 --- a/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx +++ b/src/frontend/src/tables/build/BuildAllocatedStockTable.tsx @@ -34,7 +34,7 @@ export default function BuildAllocatedStockTable({ allowEdit, modelTarget, modelField -}: { +}: Readonly<{ buildId?: number; stockId?: number; partId?: number; @@ -43,7 +43,7 @@ export default function BuildAllocatedStockTable({ allowEdit?: boolean; modelTarget?: ModelType; modelField?: string; -}) { +}>) { const user = useUserState(); const table = useTable('buildallocatedstock'); diff --git a/src/frontend/src/tables/build/BuildLineTable.tsx b/src/frontend/src/tables/build/BuildLineTable.tsx index 0ab49f02e6..6568e507b0 100644 --- a/src/frontend/src/tables/build/BuildLineTable.tsx +++ b/src/frontend/src/tables/build/BuildLineTable.tsx @@ -5,7 +5,6 @@ import { IconCircleMinus, IconShoppingCart, IconTool, - IconTransferIn, IconWand } from '@tabler/icons-react'; import { useCallback, useMemo, useState } from 'react'; @@ -37,12 +36,12 @@ export default function BuildLineTable({ build, outputId, params = {} -}: { +}: Readonly<{ buildId: number; build: any; outputId?: number; params?: any; -}) { +}>) { const table = useTable('buildline'); const user = useUserState(); const buildStatus = useStatusCodes({ modelType: ModelType.build }); @@ -441,6 +440,7 @@ export default function BuildLineTable({ const visible = production && canEdit; return [ } tooltip={t`Auto Allocate Stock`} hidden={!visible} @@ -450,6 +450,7 @@ export default function BuildLineTable({ }} />, } tooltip={t`Allocate Stock`} hidden={!visible} @@ -468,6 +469,7 @@ export default function BuildLineTable({ }} />, } tooltip={t`Deallocate Stock`} hidden={!visible} diff --git a/src/frontend/src/tables/build/BuildOrderTestTable.tsx b/src/frontend/src/tables/build/BuildOrderTestTable.tsx index 4905945e9d..ff8cb61d68 100644 --- a/src/frontend/src/tables/build/BuildOrderTestTable.tsx +++ b/src/frontend/src/tables/build/BuildOrderTestTable.tsx @@ -28,10 +28,10 @@ import { TableHoverCard } from '../TableHoverCard'; export default function BuildOrderTestTable({ buildId, partId -}: { +}: Readonly<{ buildId: number; partId: number; -}) { +}>) { const table = useTable('build-tests'); const user = useUserState(); diff --git a/src/frontend/src/tables/build/BuildOutputTable.tsx b/src/frontend/src/tables/build/BuildOutputTable.tsx index 61dd1a8dc4..ae81ac8c12 100644 --- a/src/frontend/src/tables/build/BuildOutputTable.tsx +++ b/src/frontend/src/tables/build/BuildOutputTable.tsx @@ -34,7 +34,7 @@ type TestResultOverview = { result: boolean; }; -export default function BuildOutputTable({ build }: { build: any }) { +export default function BuildOutputTable({ build }: Readonly<{ build: any }>) { const user = useUserState(); const table = useTable('build-outputs'); @@ -208,11 +208,13 @@ export default function BuildOutputTable({ build }: { build: any }) { const tableActions = useMemo(() => { return [ ) : ( - {t`Plugin is not active`} + {t`Plugin is not active`} )} @@ -207,7 +207,7 @@ export function PluginDrawer({ pluginKey }: { pluginKey: Readonly }) { /** * Construct an indicator icon for a single plugin */ -function PluginIcon({ plugin }: { plugin: PluginI }) { +function PluginIcon({ plugin }: Readonly<{ plugin: PluginI }>) { if (plugin?.is_installed) { if (plugin?.active) { return ( @@ -514,12 +514,14 @@ export default function PluginListTable() { return [ } tooltip={t`Reload Plugins`} onClick={reloadPlugins} />, } tooltip={t`Install Plugin`} diff --git a/src/frontend/src/tables/sales/ReturnOrderLineItemTable.tsx b/src/frontend/src/tables/sales/ReturnOrderLineItemTable.tsx index 25a7a9fe72..4b5629a768 100644 --- a/src/frontend/src/tables/sales/ReturnOrderLineItemTable.tsx +++ b/src/frontend/src/tables/sales/ReturnOrderLineItemTable.tsx @@ -34,11 +34,11 @@ export default function ReturnOrderLineItemTable({ orderId, customerId, currency -}: { +}: Readonly<{ orderId: number; customerId: number; currency: string; -}) { +}>) { const table = useTable('return-order-line-item'); const user = useUserState(); @@ -139,6 +139,7 @@ export default function ReturnOrderLineItemTable({ const tableActions = useMemo(() => { return [